Update maven-{deploy,install}-plugin to 3.1.1 50/110450/5
authorRobert Varga <robert.varga@pantheon.tech>
Sun, 3 Mar 2024 10:28:19 +0000 (11:28 +0100)
committerRobert Varga <robert.varga@pantheon.tech>
Sun, 3 Mar 2024 11:42:00 +0000 (12:42 +0100)
There two plugin share expectations, so their major version needs to be
bumped at the same time.

maven-deploy-plugin:
https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12317228&version=12330476
https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12317228&version=12344166
https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12317228&version=12351654
https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12317228&version=12352181
https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12317228&version=12352894

maven-install-plugin:
https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12317524&version=12334343
https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12317524&version=12344165
https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12317524&version=12352096
https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12317524&version=12352107
https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12317524&version=12353026

Since single-feature-parent's mechanics results in what is considered an
incomplete project, https://issues.apache.org/jira/browse/MINSTALL-151,
set allowIncompleteProjects=true for those features. The same affects
feature-repo-parent.

Change-Id: I03b2019795f801e20913d30561b5ffbae0782047
Signed-off-by: Robert Varga <robert.varga@pantheon.tech>
feature-repo-parent/pom.xml
odlparent-lite/pom.xml
single-feature-parent/pom.xml

index e1b6c6b5c2eda06c041d838c0658ed268d8e96d3..8568787f2742cf0c879c14edfeb39c30b40ce638 100644 (file)
@@ -40,6 +40,9 @@
 
         <!-- We typically do not have code in feature artifacts, which throws off maven-dependency-plugin -->
         <odlparent.dependency.skip>true</odlparent.dependency.skip>
+
+        <!-- See https://issues.apache.org/jira/browse/MINSTALL-151 -->
+        <allowIncompleteProjects>true</allowIncompleteProjects>
     </properties>
 
     <build>
index 413ea7b644da5ae00fc2d964dab14a8c45523ad7..6d6e5f86169af9af2fa5df843883a41ef173dbeb 100644 (file)
         </plugin>
         <plugin>
           <artifactId>maven-deploy-plugin</artifactId>
-          <version>2.8.2</version>
+          <version>3.1.1</version>
           <configuration>
             <skip>${maven.deploy.skip}</skip>
           </configuration>
         </plugin>
         <plugin>
           <artifactId>maven-install-plugin</artifactId>
-          <version>2.5.2</version>
+          <version>3.1.1</version>
           <configuration>
             <skip>${maven.install.skip}</skip>
           </configuration>
index 5010d3f20195d224c765fa2e54319a9e0c32f6c6..316c518e19c091a3df4a639fb2582c420c8e4536 100644 (file)
     <packaging>pom</packaging>
     <name>ODL :: odlparent :: ${project.artifactId}</name>
 
+    <properties>
+        <!-- See https://issues.apache.org/jira/browse/MINSTALL-151 -->
+        <allowIncompleteProjects>true</allowIncompleteProjects>
+    </properties>
+
     <build>
         <pluginManagement>
             <plugins>