Skip to content

Commit

Permalink
Update to 3.0.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
dsyer committed Jul 12, 2024
1 parent a1785c0 commit f8f1e34
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,13 @@ 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
export 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`
./mvnw -B deploy -s .mvn/settings.xml
4 changes: 2 additions & 2 deletions .mvn/settings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
<servers>
<server>
<id>sonatype-nexus-staging</id>
<username>${env.sonatype_username}</username>
<password>${env.sonatype_password}</password>
<username>tokenuser</username>
<password>${env.token}</password>
</server>
<server>
<id>repo.spring.io</id>
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down Expand Up @@ -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>
Expand Down

0 comments on commit f8f1e34

Please sign in to comment.