You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@avro.apache.org by ie...@apache.org on 2020/06/22 13:28:02 UTC

[avro] branch master updated (9a33ed5 -> d9fae92)

This is an automated email from the ASF dual-hosted git repository.

iemejia pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/avro.git.


    from 9a33ed5  AVRO-2849: Update spec to clarify valid namespaces (#917)
     new 95f48dd  AVRO-2865: Remove maven 2 support.
     new d9fae92  AVRO-2865: Actually bump the jar.

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 lang/java/maven-plugin/pom.xml | 22 +++++++++++++++-------
 1 file changed, 15 insertions(+), 7 deletions(-)


[avro] 02/02: AVRO-2865: Actually bump the jar.

Posted by ie...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

iemejia pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/avro.git

commit d9fae92aed6d40bb881badbbbe5eb74060efd01b
Author: Ryan Skraba <ry...@skraba.com>
AuthorDate: Fri Jun 19 15:14:43 2020 +0200

    AVRO-2865: Actually bump the jar.
---
 lang/java/maven-plugin/pom.xml | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/lang/java/maven-plugin/pom.xml b/lang/java/maven-plugin/pom.xml
index ab804cb..1e25afe 100644
--- a/lang/java/maven-plugin/pom.xml
+++ b/lang/java/maven-plugin/pom.xml
@@ -61,6 +61,14 @@
       <artifactId>maven-core</artifactId>
       <version>${maven.version}</version>
     </dependency>
+    <!-- Bump this to a higher version while maven 3.3.9 still uses 3.0.22 with a -->
+    <!-- XML injection vulnerability. -->
+    <dependency>
+      <groupId>org.codehaus.plexus</groupId>
+      <artifactId>plexus-utils</artifactId>
+      <version>3.0.24</version>
+      <scope>provided</scope>
+    </dependency>
     <dependency>
       <groupId>org.apache.maven.shared</groupId>
       <artifactId>file-management</artifactId>


[avro] 01/02: AVRO-2865: Remove maven 2 support.

Posted by ie...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

iemejia pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/avro.git

commit 95f48dd6dd51f98485d04c7359371e767579bc76
Author: Ryan Skraba <ry...@skraba.com>
AuthorDate: Fri Jun 19 13:45:50 2020 +0200

    AVRO-2865: Remove maven 2 support.
---
 lang/java/maven-plugin/pom.xml | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/lang/java/maven-plugin/pom.xml b/lang/java/maven-plugin/pom.xml
index 679c182..ab804cb 100644
--- a/lang/java/maven-plugin/pom.xml
+++ b/lang/java/maven-plugin/pom.xml
@@ -57,10 +57,8 @@
 
   <dependencies>
     <dependency>
-      <!-- Maven2 classes maintained as compatibility layer -->
-      <!-- Remove once avro-maven-plugin code is upgrade to Maven3 -->
       <groupId>org.apache.maven</groupId>
-      <artifactId>maven-compat</artifactId>
+      <artifactId>maven-core</artifactId>
       <version>${maven.version}</version>
     </dependency>
     <dependency>
@@ -69,10 +67,6 @@
       <version>${file-management.version}</version>
       <exclusions>
         <exclusion>
-          <groupId>org.apache.maven</groupId>
-          <artifactId>maven-plugin-api</artifactId>
-        </exclusion>
-        <exclusion>
           <groupId>com.google.code.findbugs</groupId>
           <artifactId>jsr305</artifactId>
         </exclusion>
@@ -85,6 +79,12 @@
     </dependency>
     <!-- test-->
     <dependency>
+      <groupId>org.apache.maven</groupId>
+      <artifactId>maven-compat</artifactId>
+      <version>${maven.version}</version>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
       <groupId>org.apache.maven.plugin-testing</groupId>
       <artifactId>maven-plugin-testing-tools</artifactId>
       <version>${pluginTestingVersion}</version>