Skip to content

Commit

Permalink
make build as reproducible as possible for now
Browse files Browse the repository at this point in the history
  • Loading branch information
hboutemy committed Dec 14, 2019
1 parent d5b9878 commit c954a7e
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,7 @@ under the License.
<properties>
<javaVersion>7</javaVersion>
<mavenVersion>3.0</mavenVersion>
<project.build.outputTimestamp>2019-12-08T19:56:05Z</project.build.outputTimestamp>
</properties>

<dependencies>
Expand Down Expand Up @@ -155,6 +156,27 @@ under the License.
</configuration>
</plugin>
</plugins>
<pluginManagement>
<plugins>
<!-- Reproducible Builds plugins: to be removed once parent POM updated to 34 -->
<plugin>
<artifactId>maven-source-plugin</artifactId>
<version>3.2.0</version><!-- not fully reproducible: see MSOURCES-123 -->
</plugin>
<plugin>
<artifactId>maven-jar-plugin</artifactId>
<version>3.2.0</version>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<version>3.2.0</version>
</plugin>
<plugin>
<artifactId>maven-release-plugin</artifactId>
<version>3.0.0-M1</version>
</plugin>
</plugins>
</pluginManagement>
</build>

<profiles>
Expand Down

0 comments on commit c954a7e

Please sign in to comment.