-
Notifications
You must be signed in to change notification settings - Fork 99
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[WAGON-641] Upgrade dependencies and pom cleanup
- Loading branch information
1 parent
4803495
commit dd25f2b
Showing
15 changed files
with
32 additions
and
140 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -126,67 +126,6 @@ under the License. | |
</contributor> | ||
</contributors> | ||
|
||
<mailingLists> | ||
<mailingList> | ||
<name>Maven Developer List</name> | ||
<subscribe>[email protected]</subscribe> | ||
<unsubscribe>[email protected]</unsubscribe> | ||
<post>[email protected]</post> | ||
<archive>http://mail-archives.apache.org/mod_mbox/maven-dev</archive> | ||
<otherArchives> | ||
<otherArchive>http://www.mail-archive.com/[email protected]/</otherArchive> | ||
<otherArchive>http://maven.40175.n5.nabble.com/Maven-Developers-f142166.html</otherArchive> | ||
<otherArchive>http://maven-dev.markmail.org/</otherArchive> | ||
</otherArchives> | ||
</mailingList> | ||
<mailingList> | ||
<name>Maven User List</name> | ||
<subscribe>[email protected]</subscribe> | ||
<unsubscribe>[email protected]</unsubscribe> | ||
<post>[email protected]</post> | ||
<archive>http://mail-archives.apache.org/mod_mbox/maven-users</archive> | ||
<otherArchives> | ||
<otherArchive>http://www.mail-archive.com/[email protected]/</otherArchive> | ||
<otherArchive>http://maven.40175.n5.nabble.com/Maven-Users-f40176.html</otherArchive> | ||
<otherArchive>http://maven-users.markmail.org/</otherArchive> | ||
</otherArchives> | ||
</mailingList> | ||
|
||
<mailingList> | ||
<name>LEGACY Wagon User List (deprecated)</name> | ||
<subscribe>[email protected]</subscribe> | ||
<unsubscribe>[email protected]</unsubscribe> | ||
<post>[email protected]</post> | ||
<archive>http://mail-archives.apache.org/mod_mbox/maven-wagon-users/</archive> | ||
<otherArchives> | ||
<otherArchive>http://www.mail-archive.com/[email protected]</otherArchive> | ||
<otherArchive>http://maven.40175.n5.nabble.com/Wagon-Users-f326332.html</otherArchive> | ||
<otherArchive>http://maven-wagon-users.markmail.org/</otherArchive> | ||
</otherArchives> | ||
</mailingList> | ||
<mailingList> | ||
<name>LEGACY Wagon Developer List (deprecated)</name> | ||
<subscribe>[email protected]</subscribe> | ||
<unsubscribe>[email protected]</unsubscribe> | ||
<post>[email protected]</post> | ||
<archive>http://mail-archives.apache.org/mod_mbox/maven-wagon-dev/</archive> | ||
<otherArchives> | ||
<otherArchive>http://www.mail-archive.com/[email protected]</otherArchive> | ||
<otherArchive>http://maven.40175.n5.nabble.com/Wagon-Dev-f326406.html</otherArchive> | ||
<otherArchive>http://maven-wagon-dev.markmail.org/</otherArchive> | ||
</otherArchives> | ||
</mailingList> | ||
<mailingList> | ||
<name>Wagon Commits List</name> | ||
<subscribe>[email protected]</subscribe> | ||
<unsubscribe>[email protected]</unsubscribe> | ||
<archive>http://mail-archives.apache.org/mod_mbox/maven-wagon-commits/</archive> | ||
<otherArchives> | ||
<otherArchive>http://maven-wagon-commits.markmail.org/</otherArchive> | ||
</otherArchives> | ||
</mailingList> | ||
</mailingLists> | ||
|
||
<modules> | ||
<module>wagon-provider-api</module> | ||
<module>wagon-providers</module> | ||
|
@@ -221,6 +160,8 @@ under the License. | |
<maven.test.redirectTestOutputToFile>true</maven.test.redirectTestOutputToFile> | ||
<slf4jVersion>1.7.36</slf4jVersion> | ||
<maven.site.path>wagon-archives/wagon-LATEST</maven.site.path> | ||
<version.plexus-utils>3.6.0</version.plexus-utils> | ||
<version.sisu-maven-plugin>0.9.0.M3</version.sisu-maven-plugin> | ||
<project.build.outputTimestamp>2022-12-18T21:06:44Z</project.build.outputTimestamp> | ||
</properties> | ||
|
||
|
@@ -259,14 +200,8 @@ under the License. | |
<dependency> | ||
<groupId>org.codehaus.plexus</groupId> | ||
<artifactId>plexus-container-default</artifactId> | ||
<version>2.1.0</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.codehaus.plexus</groupId> | ||
<artifactId>plexus-utils</artifactId> | ||
<version>3.3.1</version> | ||
<version>2.1.1</version> | ||
</dependency> | ||
|
||
<!-- for slf4j --> | ||
<dependency> | ||
<groupId>org.slf4j</groupId> | ||
|
@@ -349,31 +284,6 @@ under the License. | |
</excludes> | ||
</configuration> | ||
</plugin> | ||
<!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.--> | ||
<plugin> | ||
<groupId>org.eclipse.m2e</groupId> | ||
<artifactId>lifecycle-mapping</artifactId> | ||
<version>1.0.0</version> | ||
<configuration> | ||
<lifecycleMappingMetadata> | ||
<pluginExecutions> | ||
<pluginExecution> | ||
<pluginExecutionFilter> | ||
<groupId>org.apache.rat</groupId> | ||
<artifactId>apache-rat-plugin</artifactId> | ||
<versionRange>[0.11,)</versionRange> | ||
<goals> | ||
<goal>check</goal> | ||
</goals> | ||
</pluginExecutionFilter> | ||
<action> | ||
<ignore /> | ||
</action> | ||
</pluginExecution> | ||
</pluginExecutions> | ||
</lifecycleMappingMetadata> | ||
</configuration> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.codehaus.plexus</groupId> | ||
<artifactId>plexus-component-metadata</artifactId> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.