This is an automated email from the ASF dual-hosted git repository. sjaranowski pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/maven-dist-tool.git
The following commit(s) were added to refs/heads/master by this push: new 9f1e360 Improvements project dependencies 9f1e360 is described below commit 9f1e360041ae4ab6e26a6db008bdebba5e785a91 Author: Slawomir Jaranowski <s.jaranow...@gmail.com> AuthorDate: Wed Oct 30 09:19:54 2024 +0100 Improvements project dependencies Follow output of dependency:analyze --- pom.xml | 88 +++++++++++++++++++++++++++++------------------------------------ 1 file changed, 39 insertions(+), 49 deletions(-) diff --git a/pom.xml b/pom.xml index f71e584..e635640 100644 --- a/pom.xml +++ b/pom.xml @@ -64,6 +64,18 @@ <maven.compiler.target>8</maven.compiler.target> </properties> + <dependencyManagement> + <dependencies> + <dependency> + <groupId>com.fasterxml.jackson</groupId> + <artifactId>jackson-bom</artifactId> + <version>2.18.1</version> + <type>pom</type> + <scope>import</scope> + </dependency> + </dependencies> + </dependencyManagement> + <dependencies> <dependency> <groupId>org.apache.maven</groupId> @@ -76,11 +88,6 @@ <artifactId>maven-plugin-annotations</artifactId> <scope>provided</scope> </dependency> - <dependency> - <groupId>org.jsoup</groupId> - <artifactId>jsoup</artifactId> - <version>1.18.1</version> - </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-core</artifactId> @@ -93,24 +100,6 @@ <version>${mvnversion}</version> <scope>provided</scope> </dependency> - <dependency> - <groupId>org.apache.maven</groupId> - <artifactId>maven-model</artifactId> - <version>${mvnversion}</version> - <scope>provided</scope> - </dependency> - <dependency> - <groupId>org.apache.maven</groupId> - <artifactId>maven-settings</artifactId> - <version>${mvnversion}</version> - <scope>provided</scope> - </dependency> - <dependency> - <groupId>org.apache.maven</groupId> - <artifactId>maven-settings-builder</artifactId> - <version>${mvnversion}</version> - <scope>provided</scope> - </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-compat</artifactId> @@ -123,42 +112,39 @@ <version>${mvnversion}</version> <scope>provided</scope> </dependency> - <!-- checking only --> + <!-- reporting --> <dependency> - <groupId>org.apache.maven.reporting</groupId> - <artifactId>maven-reporting-api</artifactId> - <version>4.0.0</version> + <groupId>org.apache.maven.doxia</groupId> + <artifactId>doxia-core</artifactId> + <version>2.0.0</version> </dependency> <dependency> - <groupId>org.apache.maven.reporting</groupId> - <artifactId>maven-reporting-impl</artifactId> - <version>4.0.0</version> + <groupId>org.apache.maven.doxia</groupId> + <artifactId>doxia-sink-api</artifactId> + <version>2.0.0</version> </dependency> <dependency> <groupId>org.apache.maven.reporting</groupId> - <artifactId>maven-reporting-exec</artifactId> - <version>2.0.0</version> + <artifactId>maven-reporting-impl</artifactId> + <version>4.0.0</version> </dependency> <dependency> - <groupId>org.eclipse.aether</groupId> - <artifactId>aether-api</artifactId> - <version>0.9.0.M2</version> + <groupId>org.jsoup</groupId> + <artifactId>jsoup</artifactId> + <version>1.18.1</version> </dependency> <dependency> - <groupId>org.eclipse.aether</groupId> - <artifactId>aether-util</artifactId> - <version>0.9.0.M2</version> + <groupId>com.fasterxml.jackson.core</groupId> + <artifactId>jackson-annotations</artifactId> </dependency> <dependency> - <groupId>xml-apis</groupId> - <artifactId>xml-apis</artifactId> - <version>1.4.01</version> + <groupId>com.fasterxml.jackson.core</groupId> + <artifactId>jackson-databind</artifactId> </dependency> <dependency> - <groupId>org.apache.maven</groupId> - <artifactId>maven-aether-provider</artifactId> - <version>${mvnversion}</version> - <scope>provided</scope> + <groupId>commons-io</groupId> + <artifactId>commons-io</artifactId> + <version>2.17.0</version> </dependency> <!-- https://mvnrepository.com/artifact/org.kohsuke/github-api --> <dependency> @@ -167,13 +153,17 @@ <version>1.129</version> </dependency> <dependency> - <groupId>org.junit.jupiter</groupId> - <artifactId>junit-jupiter-api</artifactId> - <scope>test</scope> + <groupId>org.codehaus.plexus</groupId> + <artifactId>plexus-xml</artifactId> </dependency> <dependency> <groupId>org.codehaus.plexus</groupId> - <artifactId>plexus-xml</artifactId> + <artifactId>plexus-utils</artifactId> + </dependency> + <dependency> + <groupId>org.junit.jupiter</groupId> + <artifactId>junit-jupiter-api</artifactId> + <scope>test</scope> </dependency> </dependencies>