Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions docs/src/site/apt/index.apt.vm
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,8 @@ Apache Software Foundation Parent POM
The value will be updated by Maven Release Plugin during releases. If a project wants to disable Reproducible Builds, just define
the property value with any single non-numeric character.

In version 34, Reproducible Central Report is added to report on Reproducible Builds checks for the project and it dependencies.

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

"and its dependencies" ?!


[]

The <<<apache-release>>> Profile
Expand Down
11 changes: 11 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,7 @@ under the License.
<version.apache-resource-bundles>1.7</version.apache-resource-bundles>
<version.checksum-maven-plugin>1.11</version.checksum-maven-plugin>
<version.maven-antrun-plugin>3.1.0</version.maven-antrun-plugin>
<version.maven-artifact-plugin>3.6.0</version.maven-artifact-plugin>
<version.maven-assembly-plugin>3.7.1</version.maven-assembly-plugin>
<version.maven-clean-plugin>3.4.0</version.maven-clean-plugin>
<version.maven-checkstyle-plugin>3.6.0</version.maven-checkstyle-plugin>
Expand Down Expand Up @@ -391,6 +392,16 @@ under the License.
</plugins>
</build>

<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-artifact-plugin</artifactId>
<version>${version.maven-artifact-plugin}</version>
</plugin>
</plugins>
</reporting>

<profiles>
<!-- START SNIPPET: release-profile -->
<profile>
Expand Down