Skip to content

Commit

Permalink
build: Configure reproducible settings
Browse files Browse the repository at this point in the history
  • Loading branch information
aalmiray committed Mar 25, 2024
1 parent 7344821 commit 54af94e
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@
<java.version>1.8</java.version>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<maven.compiler.release>8</maven.compiler.release>
<!-- value comes from property git.commit.author.time -->
<project.build.outputTimestamp>${git.commit.author.time}</project.build.outputTimestamp>
<slf4j.version>2.0.12</slf4j.version>
Expand Down Expand Up @@ -76,7 +77,6 @@
<module>pomchecker-core</module>
<module>pomchecker-cli</module>
<module>pomchecker-toolprovider</module>
<module>pomchecker-gradle-plugin</module>
<module>pomchecker-enforcer-rules</module>
<module>pomchecker-maven-plugin</module>
</modules>
Expand Down Expand Up @@ -389,4 +389,19 @@
<url>file://${local.repository.path}/site</url>
</site>
</distributionManagement>

<profiles>
<profile>
<id>reproducible</id>
<activation>
<property>
<name>reproducible</name>
<value>!true</value>
</property>
</activation>
<modules>
<module>pomchecker-gradle-plugin</module>
</modules>
</profile>
</profiles>
</project>

0 comments on commit 54af94e

Please sign in to comment.