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

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-release-plugin.git


The following commit(s) were added to refs/heads/master by this push:
     new 863f923  Our plugin needs work to run with 3.8.2 or 3.8.3.
863f923 is described below

commit 863f923572c6e38c015e6fe444eab1c8550c5c2d
Author: Gary Gregory <garydgreg...@gmail.com>
AuthorDate: Sat Oct 23 09:35:12 2021 -0400

    Our plugin needs work to run with 3.8.2 or 3.8.3.
    
    - 3.8.2 fails with some class not found error
    - 3.8.3 fails because MavenProject.getAttachedArtifacts() returns an
    IMMUTABLE collection and we want to change it!
---
 pom.xml | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index e0b1354..b463dde 100644
--- a/pom.xml
+++ b/pom.xml
@@ -94,7 +94,9 @@
     <failOnError>false</failOnError>
     <maven.compiler.source>1.8</maven.compiler.source>
     <maven.compiler.target>1.8</maven.compiler.target>
-    <maven.dependency.version>3.8.3</maven.dependency.version>
+    <!-- 3.8.2 fails with some class not found error -->
+    <!-- 3.8.3 fails because MavenProject.getAttachedArtifacts() returns an 
IMMUTABLE collection and we want to change it! -->
+    <maven.dependency.version>3.8.1</maven.dependency.version>
     <commons.componentid>commons-release-plugin</commons.componentid>
     <commons.jira.id>COMMONSSITE</commons.jira.id>
     <commons.jira.pid>12310466&amp;amp;component=12312401</commons.jira.pid>

Reply via email to