[Git][java-team/maven-plugin-tools][master] 3 commits: New upstream version 3.7.1

Emmanuel Bourg (@ebourg) gitlab at salsa.debian.org
Tue Jan 31 12:24:33 GMT 2023



Emmanuel Bourg pushed to branch master at Debian Java Maintainers / maven-plugin-tools


Commits:
5c09e2db by Emmanuel Bourg at 2023-01-31T13:21:45+01:00
New upstream version 3.7.1
- - - - -
073ad9dd by Emmanuel Bourg at 2023-01-31T13:21:46+01:00
Update upstream source from tag 'upstream/3.7.1'

Update to upstream version '3.7.1'
with Debian dir be813226a972cd44d827d959ce4745a09a57c572
- - - - -
f1f629b2 by Emmanuel Bourg at 2023-01-31T13:22:52+01:00
New upstream release (3.7.1)

- - - - -


16 changed files:

- debian/changelog
- maven-plugin-annotations/pom.xml
- maven-plugin-plugin/pom.xml
- maven-plugin-plugin/src/main/java/org/apache/maven/plugin/plugin/DescriptorGeneratorMojo.java
- maven-plugin-report-plugin/pom.xml
- maven-plugin-tools-annotations/pom.xml
- maven-plugin-tools-api/pom.xml
- maven-plugin-tools-generators/pom.xml
- maven-plugin-tools-java/pom.xml
- maven-script/maven-plugin-tools-ant/pom.xml
- maven-script/maven-plugin-tools-beanshell/pom.xml
- maven-script/maven-plugin-tools-model/pom.xml
- maven-script/maven-script-ant/pom.xml
- maven-script/maven-script-beanshell/pom.xml
- maven-script/pom.xml
- pom.xml


Changes:

=====================================
debian/changelog
=====================================
@@ -1,3 +1,10 @@
+maven-plugin-tools (3.7.1-1) unstable; urgency=medium
+
+  * Team upload.
+  * New upstream release
+
+ -- Emmanuel Bourg <ebourg at apache.org>  Tue, 31 Jan 2023 13:22:41 +0100
+
 maven-plugin-tools (3.7.0-1) unstable; urgency=medium
 
   * Team upload.


=====================================
maven-plugin-annotations/pom.xml
=====================================
@@ -23,7 +23,7 @@
   <parent>
     <artifactId>maven-plugin-tools</artifactId>
     <groupId>org.apache.maven.plugin-tools</groupId>
-    <version>3.7.0</version>
+    <version>3.7.1</version>
   </parent>
 
   <artifactId>maven-plugin-annotations</artifactId>


=====================================
maven-plugin-plugin/pom.xml
=====================================
@@ -23,7 +23,7 @@
   <parent>
     <artifactId>maven-plugin-tools</artifactId>
     <groupId>org.apache.maven.plugin-tools</groupId>
-    <version>3.7.0</version>
+    <version>3.7.1</version>
   </parent>
 
   <groupId>org.apache.maven.plugins</groupId>


=====================================
maven-plugin-plugin/src/main/java/org/apache/maven/plugin/plugin/DescriptorGeneratorMojo.java
=====================================
@@ -253,7 +253,7 @@ public class DescriptorGeneratorMojo
                         && project.getArtifactId().toLowerCase().endsWith( "-plugin" )
                         && !"org.apache.maven.plugins".equals( project.getGroupId() ) )
         {
-            getLog().error( LS + LS + "Artifact Ids of the format maven-___-plugin are reserved for" + LS
+            getLog().warn( LS + LS + "Artifact Ids of the format maven-___-plugin are reserved for" + LS
                                 + "plugins in the Group Id org.apache.maven.plugins" + LS
                                 + "Please change your artifactId to the format ___-maven-plugin" + LS
                                 + "In the future this error will break the build." + LS + LS );
@@ -270,7 +270,7 @@ public class DescriptorGeneratorMojo
             Set<Artifact> wrongScopedArtifacts = dependenciesNotInProvidedScope();
             if ( !wrongScopedArtifacts.isEmpty() )
             {
-                StringBuilder errorMessage = new StringBuilder(
+                StringBuilder message = new StringBuilder(
                     LS + LS + "Some dependencies of Maven Plugins are expected to be in provided scope." + LS
                         + "Please make sure that dependencies listed below declared in POM" + LS
                         + "have set '<scope>provided</scope>' as well." + LS + LS
@@ -278,11 +278,11 @@ public class DescriptorGeneratorMojo
                 );
                 for ( Artifact artifact : wrongScopedArtifacts )
                 {
-                    errorMessage.append( " * " ).append( artifact ).append( LS );
+                    message.append( " * " ).append( artifact ).append( LS );
                 }
-                errorMessage.append( LS ).append( LS );
+                message.append( LS ).append( LS );
 
-                getLog().error( errorMessage.toString() );
+                getLog().warn( message.toString() );
             }
         }
 


=====================================
maven-plugin-report-plugin/pom.xml
=====================================
@@ -23,7 +23,7 @@
     <parent>
         <artifactId>maven-plugin-tools</artifactId>
         <groupId>org.apache.maven.plugin-tools</groupId>
-        <version>3.7.0</version>
+        <version>3.7.1</version>
     </parent>
 
     <groupId>org.apache.maven.plugins</groupId>


=====================================
maven-plugin-tools-annotations/pom.xml
=====================================
@@ -22,7 +22,7 @@
   <parent>
     <groupId>org.apache.maven.plugin-tools</groupId>
     <artifactId>maven-plugin-tools</artifactId>
-    <version>3.7.0</version>
+    <version>3.7.1</version>
   </parent>
 
   <artifactId>maven-plugin-tools-annotations</artifactId>


=====================================
maven-plugin-tools-api/pom.xml
=====================================
@@ -25,7 +25,7 @@
   <parent>
     <groupId>org.apache.maven.plugin-tools</groupId>
     <artifactId>maven-plugin-tools</artifactId>
-    <version>3.7.0</version>
+    <version>3.7.1</version>
   </parent>
 
   <artifactId>maven-plugin-tools-api</artifactId>


=====================================
maven-plugin-tools-generators/pom.xml
=====================================
@@ -25,7 +25,7 @@
   <parent>
     <groupId>org.apache.maven.plugin-tools</groupId>
     <artifactId>maven-plugin-tools</artifactId>
-    <version>3.7.0</version>
+    <version>3.7.1</version>
   </parent>
 
   <artifactId>maven-plugin-tools-generators</artifactId>


=====================================
maven-plugin-tools-java/pom.xml
=====================================
@@ -25,7 +25,7 @@
   <parent>
     <groupId>org.apache.maven.plugin-tools</groupId>
     <artifactId>maven-plugin-tools</artifactId>
-    <version>3.7.0</version>
+    <version>3.7.1</version>
   </parent>
 
   <artifactId>maven-plugin-tools-java</artifactId>


=====================================
maven-script/maven-plugin-tools-ant/pom.xml
=====================================
@@ -25,7 +25,7 @@
   <parent>
     <groupId>org.apache.maven.plugin-tools</groupId>
     <artifactId>maven-script</artifactId>
-    <version>3.7.0</version>
+    <version>3.7.1</version>
   </parent>
 
   <artifactId>maven-plugin-tools-ant</artifactId>


=====================================
maven-script/maven-plugin-tools-beanshell/pom.xml
=====================================
@@ -25,7 +25,7 @@
   <parent>
     <groupId>org.apache.maven.plugin-tools</groupId>
     <artifactId>maven-script</artifactId>
-    <version>3.7.0</version>
+    <version>3.7.1</version>
   </parent>
 
   <artifactId>maven-plugin-tools-beanshell</artifactId>


=====================================
maven-script/maven-plugin-tools-model/pom.xml
=====================================
@@ -25,7 +25,7 @@
   <parent>
     <groupId>org.apache.maven.plugin-tools</groupId>
     <artifactId>maven-script</artifactId>
-    <version>3.7.0</version>
+    <version>3.7.1</version>
   </parent>
 
   <artifactId>maven-plugin-tools-model</artifactId>


=====================================
maven-script/maven-script-ant/pom.xml
=====================================
@@ -23,7 +23,7 @@ under the License.
   <parent>
     <groupId>org.apache.maven.plugin-tools</groupId>
     <artifactId>maven-script</artifactId>
-    <version>3.7.0</version>
+    <version>3.7.1</version>
   </parent>
 
   <artifactId>maven-script-ant</artifactId>


=====================================
maven-script/maven-script-beanshell/pom.xml
=====================================
@@ -23,7 +23,7 @@ under the License.
   <parent>
     <groupId>org.apache.maven.plugin-tools</groupId>
     <artifactId>maven-script</artifactId>
-    <version>3.7.0</version>
+    <version>3.7.1</version>
   </parent>
 
   <artifactId>maven-script-beanshell</artifactId>


=====================================
maven-script/pom.xml
=====================================
@@ -23,7 +23,7 @@ under the License.
   <parent>
     <groupId>org.apache.maven.plugin-tools</groupId>
     <artifactId>maven-plugin-tools</artifactId>
-    <version>3.7.0</version>
+    <version>3.7.1</version>
   </parent>
 
   <artifactId>maven-script</artifactId>


=====================================
pom.xml
=====================================
@@ -29,7 +29,7 @@
 
   <groupId>org.apache.maven.plugin-tools</groupId>
   <artifactId>maven-plugin-tools</artifactId>
-  <version>3.7.0</version>
+  <version>3.7.1</version>
   <packaging>pom</packaging>
 
   <name>Maven Plugin Tools</name>
@@ -74,7 +74,7 @@
     <connection>scm:git:https://gitbox.apache.org/repos/asf/maven-plugin-tools.git</connection>
     <developerConnection>scm:git:https://gitbox.apache.org/repos/asf/maven-plugin-tools.git</developerConnection>
     <url>https://github.com/apache/maven-plugin-tools/tree/${project.scm.tag}</url>
-    <tag>maven-plugin-tools-3.7.0</tag>
+    <tag>maven-plugin-tools-3.7.1</tag>
   </scm>
   <issueManagement>
     <system>jira</system>
@@ -106,7 +106,7 @@
     <plexusUtilsVersion>3.5.0</plexusUtilsVersion>
     <reportingApiVersion>3.1.1</reportingApiVersion>
     <reportingImplVersion>3.2.0</reportingImplVersion>
-    <project.build.outputTimestamp>2022-10-30T09:27:42Z</project.build.outputTimestamp>
+    <project.build.outputTimestamp>2023-01-13T07:18:01Z</project.build.outputTimestamp>
   </properties>
 
   <dependencyManagement>



View it on GitLab: https://salsa.debian.org/java-team/maven-plugin-tools/-/compare/9531e039f434dd612ed0511e2a6458f2dcb63d29...f1f629b20db7d212fdce1477c5dd2aec06fca4ba

-- 
View it on GitLab: https://salsa.debian.org/java-team/maven-plugin-tools/-/compare/9531e039f434dd612ed0511e2a6458f2dcb63d29...f1f629b20db7d212fdce1477c5dd2aec06fca4ba
You're receiving this email because of your account on salsa.debian.org.


-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://alioth-lists.debian.net/pipermail/pkg-java-commits/attachments/20230131/e9a288bc/attachment.htm>


More information about the pkg-java-commits mailing list