Skip to content

Commit 22b0d59

Browse files
authored
release: 1.0.0 (#1)
* chore - Prepare release * chore - Upgrade gpg plugin * release - 1.0.0
1 parent 6a40188 commit 22b0d59

File tree

4 files changed

+9
-11
lines changed

4 files changed

+9
-11
lines changed

.github/workflows/deploy.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,9 @@ jobs:
3030
server-username: SONATYPE_USERNAME
3131
server-password: SONATYPE_PASSWORD
3232
gpg-private-key: ${{ secrets.GPG_SECRET_KEY }}
33-
gpg-passphrase: GPG_PASSPHRASE
3433
- name: Deploy modules
3534
run: |
3635
mvn --batch-mode clean deploy
3736
env:
3837
SONATYPE_USERNAME: ${{ secrets.SONATYPE_USERNAME }}
3938
SONATYPE_PASSWORD: ${{ secrets.SONATYPE_PASSWORD }}
40-
GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }}

kotlin-asyncapi-core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.openfolder</groupId>
77
<artifactId>kotlin-asyncapi-parent</artifactId>
8-
<version>1.0.0-SNAPSHOT</version>
8+
<version>1.0.0</version>
99
<relativePath>../pom.xml</relativePath>
1010
</parent>
1111

kotlin-asyncapi-spring-web/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.openfolder</groupId>
77
<artifactId>kotlin-asyncapi-parent</artifactId>
8-
<version>1.0.0-SNAPSHOT</version>
8+
<version>1.0.0</version>
99
<relativePath>../pom.xml</relativePath>
1010
</parent>
1111

pom.xml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<groupId>org.openfolder</groupId>
66
<artifactId>kotlin-asyncapi-parent</artifactId>
7-
<version>1.0.0-SNAPSHOT</version>
7+
<version>1.0.0</version>
88
<packaging>pom</packaging>
99

1010
<name>Kotlin AsyncAPI Parent POM</name>
@@ -140,8 +140,8 @@
140140
<extensions>true</extensions>
141141
<configuration>
142142
<serverId>ossrh</serverId>
143-
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
144-
<autoReleaseAfterClose>false</autoReleaseAfterClose>
143+
<nexusUrl>https://s01.oss.sonatype.org/</nexusUrl>
144+
<autoReleaseAfterClose>true</autoReleaseAfterClose>
145145
</configuration>
146146
</plugin>
147147
</plugins>
@@ -152,15 +152,15 @@
152152
<id>sign-artifacts</id>
153153
<activation>
154154
<property>
155-
<name>env.GPG_PASSPHRASE</name>
155+
<name>env.GPG_SECRET_KEY</name>
156156
</property>
157157
</activation>
158158
<build>
159159
<plugins>
160160
<plugin>
161161
<groupId>org.apache.maven.plugins</groupId>
162162
<artifactId>maven-gpg-plugin</artifactId>
163-
<version>1.6</version>
163+
<version>3.0.1</version>
164164
<executions>
165165
<execution>
166166
<id>sign-artifacts</id>
@@ -180,12 +180,12 @@
180180
<snapshotRepository>
181181
<id>ossrh</id>
182182
<name>Sonatype Nexus Snapshots</name>
183-
<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
183+
<url>https://s01.oss.sonatype.org/content/repositories/snapshots</url>
184184
</snapshotRepository>
185185
<repository>
186186
<id>ossrh</id>
187187
<name>Nexus Release Repository</name>
188-
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
188+
<url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url>
189189
</repository>
190190
</distributionManagement>
191191

0 commit comments

Comments
 (0)