Skip to content

Commit

Permalink
Release version 3.0.0-RC2
Browse files Browse the repository at this point in the history
This version is in line with the Spring Boot release version.
  • Loading branch information
TomCools committed Nov 20, 2022
1 parent 06d5944 commit 67ad8de
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 5 deletions.
7 changes: 6 additions & 1 deletion docs/release.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# How to publish something to Maven Central.

https://itnext.io/publishing-artifact-to-maven-central-b160634e5268
https://itnext.io/publishing-artifact-to-maven-central-b160634e5268


- Build release artifacts: clean install -Prelease
- Check GPG signature: gpg --verify target/*.pom.asc
- Deploy on Sonatype: clean deploy -Prelease
8 changes: 4 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
</parent>
<groupId>be.tomcools</groupId>
<artifactId>rickroll-security-spring-boot-starter</artifactId>
<version>3.0.0-SNAPSHOT</version>
<version>3.0.0-RC2</version>
<name>rickroll-security-spring-boot-starter</name>
<description>Redirects common security endpoints to Rick Astley - Never Gonna Give You Up</description>

Expand Down Expand Up @@ -85,8 +85,8 @@
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<configuration>
<source>17</source>
<target>17</target>
<source>${java.version}</source>
<target>${java.version}</target>
</configuration>
</plugin>

Expand Down Expand Up @@ -153,7 +153,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.9.1</version>
<version>3.4.1</version>
<executions>
<execution>
<id>attach-javadocs</id>
Expand Down

0 comments on commit 67ad8de

Please sign in to comment.