This is an automated email from the ASF dual-hosted git repository. hboutemy pushed a commit to branch reproducible in repository https://gitbox.apache.org/repos/asf/maven.git
commit 1979d19ad4fbbc41d6d31d64f65472fab08627db Author: Hervé Boutemy <[email protected]> AuthorDate: Sat Sep 21 19:17:22 2019 +0200 use packaging plugins' RB versions + plexus-metadata 2.1.0 --- .../org/apache/maven/messages/build.properties | 1 - pom.xml | 25 ++++++++++++++++------ 2 files changed, 18 insertions(+), 8 deletions(-) diff --git a/maven-core/src/main/resources/org/apache/maven/messages/build.properties b/maven-core/src/main/resources/org/apache/maven/messages/build.properties index d15784a..20f386b 100644 --- a/maven-core/src/main/resources/org/apache/maven/messages/build.properties +++ b/maven-core/src/main/resources/org/apache/maven/messages/build.properties @@ -16,7 +16,6 @@ # under the License. buildNumber=${buildNumber} -timestamp=${timestamp} version=${project.version} distributionId=${distributionId} distributionShortName=${distributionShortName} diff --git a/pom.xml b/pom.xml index 49f6566..b3cd742 100644 --- a/pom.xml +++ b/pom.xml @@ -54,7 +54,7 @@ under the License. <commonsLangVersion>3.8.1</commonsLangVersion> <junitVersion>4.12</junitVersion> <mockitoVersion>2.21.0</mockitoVersion> - <plexusVersion>2.0.0</plexusVersion> + <plexusVersion>2.1.0</plexusVersion> <plexusInterpolationVersion>1.25</plexusInterpolationVersion> <plexusUtilsVersion>3.2.1</plexusUtilsVersion> <guiceVersion>4.2.1</guiceVersion> @@ -76,6 +76,7 @@ under the License. <maven.site.path>ref/3-LATEST</maven.site.path> <checkstyle.violation.ignore>None</checkstyle.violation.ignore> <checkstyle.excludes>**/package-info.java</checkstyle.excludes> + <project.build.outputTimestamp>2019-09-21T16:17:18Z</project.build.outputTimestamp> <buildId>${os.name}-jdk${java.version}</buildId> </properties> @@ -455,6 +456,22 @@ under the License. <build> <pluginManagement> <plugins> + <!-- TODO remove source/jar/assembly versions when parent upgraded to 34 --> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-source-plugin</artifactId> + <version>3.2.0</version> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-jar-plugin</artifactId> + <version>3.2.0</version> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-assembly-plugin</artifactId> + <version>3.2.0</version> + </plugin> <plugin> <groupId>org.codehaus.plexus</groupId> <artifactId>plexus-component-metadata</artifactId> @@ -568,12 +585,6 @@ under the License. </lifecycleMappingMetadata> </configuration> </plugin> - <!-- TODO remove when upgrade to apache-22 parent pom --> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-assembly-plugin</artifactId> - <version>3.1.1</version> - </plugin> </plugins> </pluginManagement> <plugins>
