Skip to content

Commit

Permalink
fix reproducible builds
Browse files Browse the repository at this point in the history
  • Loading branch information
Raphael Vullriede committed Oct 30, 2024
1 parent d2114d3 commit f5ab688
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
Crypto Commons
===============
![GitHub](https://img.shields.io/github/license/osslabz/crypto-commons)
![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/osslabz/crypto-commons/build-on-push.yml?branch=main)
![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/osslabz/crypto-commons/build-release-on-main-push.yml?branch=main)
[![Maven Central](https://img.shields.io/maven-central/v/net.osslabz/crypto-commons?label=Maven%20Central)](https://search.maven.org/artifact/net.osslabz/crypto-commons)
[![Reproducible Builds](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/jvm-repo-rebuild/reproducible-central/master/content/net/osslabz/crypto-commons/badge.json)](https://github.com/jvm-repo-rebuild/reproducible-central/blob/master/content/net/osslabz/crypto-commons/README.md)

Contains some common classes used by various other crypto related projects.

Expand Down
4 changes: 3 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -104,15 +104,17 @@
</dependency>
</dependencies>
<configuration>
<!-- settings from the maven-release-plugin itself -->
<autoVersionSubmodules>true</autoVersionSubmodules>
<useReleaseProfile>false</useReleaseProfile>
<releaseProfiles>osslabz-release</releaseProfiles>
<tagNameFormat>@{project.version}</tagNameFormat>
<scmCommentPrefix>[release]</scmCommentPrefix>
<scmReleaseCommitComment>@{prefix} set version to @{releaseLabel}</scmReleaseCommitComment>
<scmDevelopmentCommitComment>@{prefix} prepare for next development iteration</scmDevelopmentCommitComment>
<projectVersionPolicyId>ConventionalCommitsVersionPolicy</projectVersionPolicyId>

<!-- settings from the conventional-commits-version-policy -->
<projectVersionPolicyId>ConventionalCommitsVersionPolicy</projectVersionPolicyId>
<projectVersionPolicyConfig>
<versionTag>([0-9]+\.[0-9]+\.[0-9]+)$</versionTag>
</projectVersionPolicyConfig>
Expand Down

0 comments on commit f5ab688

Please sign in to comment.