This is an automated email from the ASF dual-hosted git repository. DaanHoogland pushed a commit to branch pr6801-repeatableBuild in repository https://gitbox.apache.org/repos/asf/cloudstack.git
commit a5ae083f88fa95afe679b2a4ff3366e995effc84 Author: Hervé Boutemy <[email protected]> AuthorDate: Mon Oct 3 12:11:25 2022 -0500 enable Reproducible Builds --- client/pom.xml | 1 - pom.xml | 5 ++--- tools/checkstyle/pom.xml | 6 ++++++ 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/client/pom.xml b/client/pom.xml index 968f735af60..46109740288 100644 --- a/client/pom.xml +++ b/client/pom.xml @@ -974,7 +974,6 @@ <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-shade-plugin</artifactId> - <version>3.0.0</version> <executions> <execution> <id>rebuild-war</id> diff --git a/pom.xml b/pom.xml index 354ec01bb39..383c57ffe31 100644 --- a/pom.xml +++ b/pom.xml @@ -23,7 +23,7 @@ <parent> <groupId>org.apache</groupId> <artifactId>apache</artifactId> - <version>11</version> + <version>27</version> <relativePath /> </parent> @@ -47,6 +47,7 @@ <properties> <!-- keep in alphabetic order --> + <project.build.outputTimestamp>10</project.build.outputTimestamp> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <project.systemvm.template.location>https://download.cloudstack.org/systemvm</project.systemvm.template.location> @@ -80,7 +81,6 @@ <cs.pmd-plugin.version>3.28.0</cs.pmd-plugin.version> <cs.project-info-plugin.version>3.0.0</cs.project-info-plugin.version> <cs.owasp.dependency-checker-plugin.version>7.4.4</cs.owasp.dependency-checker-plugin.version> - <cs.release-plugin.version>2.5.3</cs.release-plugin.version> <cs.resources-plugin.version>3.1.0</cs.resources-plugin.version> <cs.site-plugin.version>3.21.0</cs.site-plugin.version> <cs.surefire-plugin.version>2.22.2</cs.surefire-plugin.version> @@ -947,7 +947,6 @@ <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> - <version>${cs.release-plugin.version}</version> <executions> <execution> <id>default</id> diff --git a/tools/checkstyle/pom.xml b/tools/checkstyle/pom.xml index 63f840d64f2..62b8f0879dd 100644 --- a/tools/checkstyle/pom.xml +++ b/tools/checkstyle/pom.xml @@ -25,12 +25,18 @@ <version>4.23.0.0-SNAPSHOT</version> <properties> + <project.build.outputTimestamp>10</project.build.outputTimestamp> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> </properties> <build> <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-jar-plugin</artifactId> + <version>3.2.2</version> + </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-site-plugin</artifactId>
