org.codehaus.plexus:plexus-utils
Advanced tools
Sorry, the diff of this file is not supported yet
| artifactId=plexus-utils | ||
| groupId=org.codehaus.plexus | ||
| version=3.5.1 | ||
| version=3.6.0 |
| <?xml version="1.0" encoding="UTF-8"?> | ||
| <!-- | ||
@@ -18,3 +17,2 @@ Copyright The Codehaus Foundation. | ||
| --> | ||
| <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
@@ -26,22 +24,22 @@ <modelVersion>4.0.0</modelVersion> | ||
| <artifactId>plexus</artifactId> | ||
| <version>10</version> | ||
| <version>19</version> | ||
| </parent> | ||
| <artifactId>plexus-utils</artifactId> | ||
| <version>3.5.1</version> | ||
| <version>3.6.0</version> | ||
| <name>Plexus Common Utilities</name> | ||
| <description>A collection of various utility classes to ease working with strings, files, command lines, XML and | ||
| more. | ||
| </description> | ||
| more.</description> | ||
| <url>https://codehaus-plexus.github.io/plexus-utils/</url> | ||
| <scm> | ||
| <connection>scm:git:git@github.com:codehaus-plexus/plexus-utils.git</connection> | ||
| <developerConnection>scm:git:git@github.com:codehaus-plexus/plexus-utils.git</developerConnection> | ||
| <url>http://github.com/codehaus-plexus/plexus-utils</url> | ||
| <tag>plexus-utils-3.5.1</tag> | ||
| <connection>scm:git:https://github.com/codehaus-plexus/plexus-utils.git</connection> | ||
| <developerConnection>${project.scm.connection}</developerConnection> | ||
| <tag>plexus-utils-3.6.0</tag> | ||
| <url>https://github.com/codehaus-plexus/plexus-utils/tree/${project.scm.tag}/</url> | ||
| </scm> | ||
| <issueManagement> | ||
| <system>github</system> | ||
| <url>http://github.com/codehaus-plexus/plexus-utils/issues</url> | ||
| <url>https://github.com/codehaus-plexus/plexus-utils/issues</url> | ||
| </issueManagement> | ||
@@ -56,3 +54,4 @@ <distributionManagement> | ||
| <properties> | ||
| <project.build.outputTimestamp>2023-03-02T01:23:05Z</project.build.outputTimestamp> | ||
| <jmhVersion>1.36</jmhVersion> | ||
| <project.build.outputTimestamp>2024-12-15T21:36:53Z</project.build.outputTimestamp> | ||
| </properties> | ||
@@ -64,3 +63,3 @@ | ||
| <artifactId>jmh-core</artifactId> | ||
| <version>1.36</version> | ||
| <version>${jmhVersion}</version> | ||
| <scope>test</scope> | ||
@@ -71,9 +70,8 @@ </dependency> | ||
| <artifactId>jmh-generator-annprocess</artifactId> | ||
| <version>1.36</version> | ||
| <version>${jmhVersion}</version> | ||
| <scope>test</scope> | ||
| </dependency> | ||
| <dependency> | ||
| <groupId>junit</groupId> | ||
| <artifactId>junit</artifactId> | ||
| <version>4.13.2</version> | ||
| <groupId>org.junit.jupiter</groupId> | ||
| <artifactId>junit-jupiter-api</artifactId> | ||
| <scope>test</scope> | ||
@@ -84,37 +82,9 @@ </dependency> | ||
| <build> | ||
| <pluginManagement> | ||
| <plugins> | ||
| <plugin> | ||
| <groupId>org.apache.maven.plugins</groupId> | ||
| <artifactId>maven-resources-plugin</artifactId> | ||
| <!-- | ||
| maven totally change his way to copy symlink | ||
| this mean the symlink is copied as a symlink and not anymore as a new file | ||
| https://issues.apache.org/jira/browse/MRESOURCES-237 | ||
| --> | ||
| <version>2.7</version> | ||
| </plugin> | ||
| </plugins> | ||
| </pluginManagement> | ||
| <plugins> | ||
| <plugin> | ||
| <artifactId>maven-compiler-plugin</artifactId> | ||
| <executions> | ||
| <execution> | ||
| <id>default-compile</id> | ||
| <goals> | ||
| <goal>compile</goal> | ||
| </goals> | ||
| <configuration> | ||
| <source>1.8</source> | ||
| <target>1.8</target> | ||
| </configuration> | ||
| </execution> | ||
| </executions> | ||
| </plugin> | ||
| <plugin> | ||
| <groupId>org.apache.maven.plugins</groupId> | ||
| <artifactId>maven-scm-publish-plugin</artifactId> | ||
| <configuration> | ||
| <content>${project.reporting.outputDirectory}</content><!-- mono-module doesn't require site:stage --> | ||
| <content>${project.reporting.outputDirectory}</content> | ||
| <!-- mono-module doesn't require site:stage --> | ||
| </configuration> | ||
@@ -124,6 +94,7 @@ <executions> | ||
| <id>scm-publish</id> | ||
| <phase>site-deploy</phase><!-- deploy site with maven-scm-publish-plugin --> | ||
| <!-- deploy site with maven-scm-publish-plugin --> | ||
| <goals> | ||
| <goal>publish-scm</goal> | ||
| </goals> | ||
| <phase>site-deploy</phase> | ||
| </execution> | ||
@@ -142,12 +113,2 @@ </executions> | ||
| </excludes> | ||
| <systemProperties> | ||
| <property> | ||
| <name>JAVA_HOME</name> | ||
| <value>${JAVA_HOME}</value> | ||
| </property> | ||
| <property> | ||
| <name>M2_HOME</name> | ||
| <value>${M2_HOME}</value> | ||
| </property> | ||
| </systemProperties> | ||
| </configuration> | ||
@@ -189,4 +150,4 @@ </plugin> | ||
| <compileSourceRoot>${project.basedir}/src/main/java9</compileSourceRoot> | ||
| </compileSourceRoots> | ||
| <multiReleaseOutput>true</multiReleaseOutput> | ||
| </compileSourceRoots> | ||
| <multiReleaseOutput>true</multiReleaseOutput> | ||
| </configuration> | ||
@@ -220,4 +181,4 @@ </execution> | ||
| <compileSourceRoot>${project.basedir}/src/main/java10</compileSourceRoot> | ||
| </compileSourceRoots> | ||
| <multiReleaseOutput>true</multiReleaseOutput> | ||
| </compileSourceRoots> | ||
| <multiReleaseOutput>true</multiReleaseOutput> | ||
| </configuration> | ||
@@ -232,31 +193,31 @@ </execution> | ||
| <profile> | ||
| <id>jdk11+</id> | ||
| <activation> | ||
| <jdk>[11,)</jdk> | ||
| </activation> | ||
| <build> | ||
| <pluginManagement> | ||
| <plugins> | ||
| <plugin> | ||
| <artifactId>maven-compiler-plugin</artifactId> | ||
| <executions> | ||
| <execution> | ||
| <id>compile-java-11</id> | ||
| <goals> | ||
| <goal>compile</goal> | ||
| </goals> | ||
| <configuration> | ||
| <release>11</release> | ||
| <compileSourceRoots> | ||
| <compileSourceRoot>${project.basedir}/src/main/java11</compileSourceRoot> | ||
| <id>jdk11+</id> | ||
| <activation> | ||
| <jdk>[11,)</jdk> | ||
| </activation> | ||
| <build> | ||
| <pluginManagement> | ||
| <plugins> | ||
| <plugin> | ||
| <artifactId>maven-compiler-plugin</artifactId> | ||
| <executions> | ||
| <execution> | ||
| <id>compile-java-11</id> | ||
| <goals> | ||
| <goal>compile</goal> | ||
| </goals> | ||
| <configuration> | ||
| <release>11</release> | ||
| <compileSourceRoots> | ||
| <compileSourceRoot>${project.basedir}/src/main/java11</compileSourceRoot> | ||
| </compileSourceRoots> | ||
| <multiReleaseOutput>true</multiReleaseOutput> | ||
| </configuration> | ||
| </execution> | ||
| </executions> | ||
| </plugin> | ||
| </plugins> | ||
| </pluginManagement> | ||
| </build> | ||
| </profile> | ||
| </configuration> | ||
| </execution> | ||
| </executions> | ||
| </plugin> | ||
| </plugins> | ||
| </pluginManagement> | ||
| </build> | ||
| </profile> | ||
| <profile> | ||
@@ -263,0 +224,0 @@ <id>plexus-release</id> |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet