This is an automated email from the ASF dual-hosted git repository. slachiewicz pushed a commit to branch MCHANGES-415 in repository https://gitbox.apache.org/repos/asf/maven-changes-plugin.git
commit cad16dfbbfd934391ab5e37637e439bb909cae09 Author: Sylwester Lachiewicz <[email protected]> AuthorDate: Sat Jan 13 21:58:22 2024 +0100 [MCHANGES-415] Cleanup after pom upgrade --- pom.xml | 38 +++++++++----------------------------- 1 file changed, 9 insertions(+), 29 deletions(-) diff --git a/pom.xml b/pom.xml index 7117ee3..b8b7981 100644 --- a/pom.xml +++ b/pom.xml @@ -87,26 +87,31 @@ under the License. <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</groupId> <artifactId>maven-model</artifactId> <version>${mavenVersion}</version> + <scope>provided</scope> </dependency> <dependency> <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-settings</artifactId> <version>${mavenVersion}</version> + <scope>provided</scope> </dependency> <!-- dependencies to annotations --> <dependency> @@ -221,7 +226,10 @@ under the License. <dependency> <groupId>org.codehaus.plexus</groupId> <artifactId>plexus-utils</artifactId> - <version>3.0.24</version> + </dependency> + <dependency> + <groupId>org.codehaus.plexus</groupId> + <artifactId>plexus-xml</artifactId> </dependency> <dependency> <groupId>org.codehaus.plexus</groupId> @@ -406,31 +414,7 @@ under the License. </dependencies> <build> - <pluginManagement> - <plugins> - <plugin> - <groupId>org.apache.rat</groupId> - <artifactId>apache-rat-plugin</artifactId> - </plugin> - <plugin> - <artifactId>maven-javadoc-plugin</artifactId> - <version>3.2.0</version> - </plugin> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-project-info-reports-plugin</artifactId> - <version>3.1.2</version> - </plugin> - </plugins> - </pluginManagement> <plugins> - <plugin> - <artifactId>maven-compiler-plugin</artifactId> - <configuration> - <compilerArgument>-Xlint:all</compilerArgument> - </configuration> - </plugin> - <plugin> <groupId>org.codehaus.modello</groupId> <artifactId>modello-maven-plugin</artifactId> @@ -528,10 +512,6 @@ under the License. <goal>clean</goal> <goal>site</goal> </goals> - <properties> - <!-- e.g. ensure that Java7 picks up TLSv1.2 when connecting with Central --> - <https.protocols>${https.protocols}</https.protocols> - </properties> </configuration> </plugin> </plugins>
