-
Notifications
You must be signed in to change notification settings - Fork 77
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[MJAR-278] Update plugin (requires Maven 3.2.5+) #19
Changes from 3 commits
21716f5
e984eb7
f8ed4a5
19998f4
2665f79
19e651f
9d1833a
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,8 +25,7 @@ | |
<parent> | ||
<artifactId>maven-plugins</artifactId> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<version>34</version> | ||
<relativePath>../../pom/maven/maven-plugins/pom.xml</relativePath> | ||
<version>35</version> | ||
</parent> | ||
|
||
<artifactId>maven-jar-plugin</artifactId> | ||
|
@@ -77,7 +76,7 @@ | |
<properties> | ||
<mavenFileManagementVersion>3.0.0</mavenFileManagementVersion> | ||
<mavenArchiverVersion>3.5.2</mavenArchiverVersion> | ||
<mavenVersion>3.1.0</mavenVersion> | ||
<mavenVersion>3.2.5</mavenVersion> | ||
<javaVersion>7</javaVersion> | ||
<project.build.outputTimestamp>2022-01-08T21:19:21Z</project.build.outputTimestamp> | ||
</properties> | ||
|
@@ -87,16 +86,19 @@ | |
<groupId>org.apache.maven</groupId> | ||
<artifactId>maven-plugin-api</artifactId> | ||
<version>${mavenVersion}</version> | ||
<scope>provided</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.apache.maven</groupId> | ||
<artifactId>maven-core</artifactId> | ||
<version>${mavenVersion}</version> | ||
<scope>provided</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.apache.maven</groupId> | ||
<artifactId>maven-artifact</artifactId> | ||
<version>${mavenVersion}</version> | ||
<scope>provided</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.apache.maven.shared</groupId> | ||
|
@@ -130,7 +132,11 @@ | |
<groupId>org.apache.maven.shared</groupId> | ||
<artifactId>maven-shared-utils</artifactId> | ||
<version>3.3.4</version> | ||
<scope>runtime</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.codehaus.plexus</groupId> | ||
<artifactId>plexus-archiver</artifactId> | ||
<version>4.2.5</version> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This should not be needed since when the maven-archiver 3.6.0 is released (#43) it will update plexus-archiver to 4.3.0, so the explicit dependency should not be added. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Sorry, but I have to, as am dropping m-shared-utils... so IMHO once this merged you should add your PR on top of it. W/o this change, due drop of m-shared-utils the build would fail 😞 |
||
</dependency> | ||
<dependency> | ||
<groupId>org.codehaus.plexus</groupId> | ||
|
@@ -147,7 +153,7 @@ | |
<dependency> | ||
<groupId>org.apache.maven.plugin-testing</groupId> | ||
<artifactId>maven-plugin-testing-harness</artifactId> | ||
<version>3.1.0</version> | ||
<version>3.3.0</version> | ||
<scope>test</scope> | ||
</dependency> | ||
<dependency> | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
same comment as on war. Is the projct ready to drop 3.1.1 support?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is requirement dictated by maven-plugin-testing-harness v 3.3.0