Skip to content

Commit

Permalink
[release] perform release
Browse files Browse the repository at this point in the history
[release] prepare release
  • Loading branch information
rvullriede authored Oct 30, 2024
2 parents 0e7f83e + f5ab688 commit b45cb76
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 5 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
15 changes: 11 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>2.18.0</version>
<version>2.18.1</version>
<optional>true</optional>
</dependency>

Expand All @@ -82,7 +82,7 @@
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>1.5.11</version>
<version>1.5.12</version>
<scope>test</scope>
</dependency>
</dependencies>
Expand All @@ -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 Expand Up @@ -189,6 +191,11 @@
</annotationProcessorPaths>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.4.2</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
Expand Down Expand Up @@ -240,4 +247,4 @@
<url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
</project>
</project>

0 comments on commit b45cb76

Please sign in to comment.