Skip to content

Commit 4e2903d

Browse files
committed
Switched to OSSRH
1 parent 7862f67 commit 4e2903d

File tree

3 files changed

+11
-6
lines changed

3 files changed

+11
-6
lines changed

.github/workflows/maven-deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
run: echo -e "$GPG_PRIVATE_KEY" | gpg --import --no-tty --batch --yes
1616
env:
1717
GPG_PRIVATE_KEY: ${{ secrets.GPG_PRIVATE_KEY }}
18-
- name: Deploy to JavaWebStack Repository
18+
- name: Deploy to OSSRH Repository
1919
run: mvn deploy -s build/settings.xml
2020
env:
2121
DEPLOYMENT_USERNAME: ${{ secrets.DEPLOYMENT_USERNAME }}

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ JWS Abstract Data Representation
55

66
![GitHub Workflow Status (branch)](https://img.shields.io/github/workflow/status/JavaWebStack/abstract-data/Maven%20Deploy/master)
77
![GitHub](https://img.shields.io/github/license/JavaWebStack/abstract-data)
8-
![Maven metadata URL](https://img.shields.io/maven-metadata/v?metadataUrl=https%3A%2F%2Frepo.javawebstack.org%2Forg%2Fjavawebstack%2Fabstract-data%2Fmaven-metadata.xml)
8+
![Maven metadata URL](https://img.shields.io/maven-metadata/v?metadataUrl=https%3A%2F%2Frepo1.maven.org%2Fmaven2%2Forg%2Fjavawebstack%2Fabstract-data%2Fmaven-metadata.xml)
99
![GitHub contributors](https://img.shields.io/github/contributors/JavaWebStack/abstract-data)
1010
![Lines of code](https://img.shields.io/tokei/lines/github/JavaWebStack/abstract-data)
1111
![Discord](https://img.shields.io/discord/815612319378833408?color=%237289DA&label=discord)

pom.xml

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,11 @@
107107
<configuration>
108108
<keyname>A313520526A8DFE1C2A30399C35A3D43C557B112</keyname>
109109
<passphraseServerId>gpg</passphraseServerId>
110+
<gpgArguments>
111+
<arg>--no-tty</arg>
112+
<arg>--batch</arg>
113+
<arg>--yes</arg>
114+
</gpgArguments>
110115
</configuration>
111116
</execution>
112117
</executions>
@@ -116,12 +121,12 @@
116121

117122
<distributionManagement>
118123
<snapshotRepository>
119-
<id>javawebstack-snapshots</id>
120-
<url>https://nexus.lumaserv.cloud/repository/javawebstack-snapshots</url>
124+
<id>ossrh</id>
125+
<url>https://s01.oss.sonatype.org/content/repositories/snapshots</url>
121126
</snapshotRepository>
122127
<repository>
123-
<id>javawebstack-releases</id>
124-
<url>https://nexus.lumaserv.cloud/repository/javawebstack-releases</url>
128+
<id>ossrh</id>
129+
<url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url>
125130
</repository>
126131
</distributionManagement>
127132

0 commit comments

Comments
 (0)