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:29:33 UTC

[avro] branch branch-1.10 updated (1172c85 -> 6b55656)

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

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


    from 1172c85  AVRO-2849: Update spec to clarify valid namespaces (#917)
     new 07b9290  AVRO-2865: Remove maven 2 support.
     new 6b55656  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] 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 branch-1.10
in repository https://gitbox.apache.org/repos/asf/avro.git

commit 07b92907ad091bdb0181dceb521e2fca9776e050
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 fe6e063..e787223 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>


[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 branch-1.10
in repository https://gitbox.apache.org/repos/asf/avro.git

commit 6b55656b25cacf0d88cf44d9d802ce46dfaadc83
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 e787223..394dd89 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>