Update to 3.0.0 release
This commit is contained in:
8
.github/workflows/push.yml
vendored
8
.github/workflows/push.yml
vendored
@@ -26,12 +26,16 @@ jobs:
|
||||
env:
|
||||
spring_username: ${{ secrets.ARTIFACTORY_USERNAME }}
|
||||
spring_password: ${{ secrets.ARTIFACTORY_PASSWORD }}
|
||||
sonatype_username: ${{ secrets.SONATYPE_USERNAME }}
|
||||
sonatype_password: ${{ secrets.SONATYPE_PASSWORD }}
|
||||
sonatype_username: ${{ secrets.OSSRH_USERNAME }}
|
||||
sonatype_password: ${{ secrets.OSSRH_PASSWORD }}
|
||||
signing_key: ${{ secrets.GPG_PRIVATE_KEY }}
|
||||
passphrase: ${{ secrets.GPG_PASSPHRASE }}
|
||||
run: |
|
||||
echo "${signing_key}" > private.asc
|
||||
gpg --import --batch --no-tty private.asc
|
||||
token=`curl -H "Accept: application/json" -H "Content-Type: application/json" --data '{"u":"'$(echo -n $sonatype_username | base64)'","p":"'$(echo -n $sonatype_password | base64)'"}' -u $sonatype_username:$sonatype_password https://oss.sonatype.org/service/siesta/wonderland/authenticate | jq -r .t`
|
||||
creds=`curl -H "Accept: application/json" -H "Content-Type: application/json" -H "X-NX-AuthTicket: $token" -u $sonatype_username:$sonatype_password https://oss.sonatype.org/service/siesta/usertoken/current`
|
||||
export nexus_username=`echo $creds | jq -r .nameCode`
|
||||
export nexus_password=`echo $creds | jq -r .passCode`
|
||||
./mvnw -B deploy -s .mvn/settings.xml
|
||||
|
||||
|
||||
@@ -14,8 +14,8 @@
|
||||
<servers>
|
||||
<server>
|
||||
<id>sonatype-nexus-staging</id>
|
||||
<username>${env.sonatype_username}</username>
|
||||
<password>${env.sonatype_password}</password>
|
||||
<username>${env.nexus_username}</username>
|
||||
<password>${env.nexus_password}</password>
|
||||
</server>
|
||||
<server>
|
||||
<id>repo.spring.io</id>
|
||||
|
||||
4
pom.xml
4
pom.xml
@@ -5,7 +5,7 @@
|
||||
|
||||
<groupId>org.springframework.guice</groupId>
|
||||
<artifactId>spring-guice</artifactId>
|
||||
<version>3.0.0-SNAPSHOT</version>
|
||||
<version>3.0.0</version>
|
||||
|
||||
<name>spring-guice</name>
|
||||
<description>Utilities for using Spring with Guice and vice versa</description>
|
||||
@@ -88,7 +88,7 @@
|
||||
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
||||
<spring.version>6.1.10</spring.version>
|
||||
<!-- Important for reproducible builds. Update using e.g. ./mvnw versions:set -DnewVersion=... -->
|
||||
<project.build.outputTimestamp>2024-07-11T12:15:41Z</project.build.outputTimestamp>
|
||||
<project.build.outputTimestamp>2024-07-11T12:23:44Z</project.build.outputTimestamp>
|
||||
</properties>
|
||||
|
||||
<build>
|
||||
|
||||
Reference in New Issue
Block a user