Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

OAK-10662 improve Reproducible Builds #1318

Open
wants to merge 1 commit into
base: trunk
Choose a base branch
from
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
12 changes: 10 additions & 2 deletions oak-parent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,9 @@
<packaging>pom</packaging>

<properties>
<!-- build time stamp: should be updated prior to a release -->
<!-- see https://maven.apache.org/guides/mini/guide-reproducible-builds.html -->
<project.build.outputTimestamp>1708183173</project.build.outputTimestamp>
<minimalMavenBuildVersion>3.3.9</minimalMavenBuildVersion><!-- evaluated by ASF parent -->
<test.opts.memory>-Xmx512m</test.opts.memory>
<test.opts>${test.opts.coverage} ${test.opts.memory} -XX:+HeapDumpOnOutOfMemoryError -Dupdate.limit=100 -Djava.awt.headless=true</test.opts>
Expand Down Expand Up @@ -136,7 +139,7 @@
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<version>5.1.8</version>
<version>5.1.9</version>
<extensions>true</extensions>
<inherited>true</inherited>
<dependencies>
Expand Down Expand Up @@ -334,6 +337,11 @@
<artifactId>versions-maven-plugin</artifactId>
<version>2.14.1</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>3.5.2</version>
</plugin>

<!-- This plugin's configuration is used to store Eclipse m2e -->
<!-- settings only. It has no influence on the Maven build itself. -->
Expand Down Expand Up @@ -1341,6 +1349,6 @@
</profiles>

<scm>
<tag>jackrabbit-oak-1.54.0</tag>
<tag>trunk</tag>
</scm>
</project>
2 changes: 1 addition & 1 deletion oak-store-composite/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
<plugin>
<groupId>org.apache.servicemix.tooling</groupId>
<artifactId>depends-maven-plugin</artifactId>
<version>1.4.0</version>
<version>1.5.0</version>
<executions>
<!-- Generate dependency file used by Pax Exam -->
<execution>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@
<connection>scm:git:https://gitbox.apache.org/repos/asf/jackrabbit-oak.git</connection>
<developerConnection>scm:git:https://gitbox.apache.org/repos/asf/jackrabbit-oak.git</developerConnection>
<url>https://github.com/apache/jackrabbit-oak/tree/${project.scm.tag}</url>
<tag>jackrabbit-oak-1.54.0</tag>
<tag>trunk</tag>
</scm>

<build>
Expand Down