Skip to content

Commit 3942bb7

Browse files
committed
Update parent version
1 parent 8d47ee1 commit 3942bb7

4 files changed

Lines changed: 8 additions & 4 deletions

File tree

.github/workflows/devbuild.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
uses: s4u/maven-settings-action@v3.0.0
3232
with:
3333
githubServer: false
34-
servers: '[{"id": "ossrh", "username": "${{ secrets.SONATYPE_USERNAME }}", "password": "${{ secrets.SONATYPE_DEPLOY_KEY }}"}]'
34+
servers: '[{"id": "central", "username": "${{ secrets.SONATYPE_USERNAME }}", "password": "${{ secrets.SONATYPE_DEPLOY_KEY }}"}]'
3535
- name: Publish to Maven Central
3636
env:
3737
MAVEN_GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }}

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
uses: s4u/maven-settings-action@v3.0.0
3131
with:
3232
githubServer: false
33-
servers: '[{"id": "ossrh", "username": "Travja", "password": "${{ secrets.SONATYPE_DEPLOY_KEY }}"}, {"id": "central", "username": "${{ secrets.SONATYPE_USERNAME }}", "password": "${{ secrets.SONATYPE_DEPLOY_KEY }}"}]'
33+
servers: '[{"id": "central", "username": "${{ secrets.SONATYPE_USERNAME }}", "password": "${{ secrets.SONATYPE_DEPLOY_KEY }}"}]'
3434
- name: Update version
3535
run: python ./.github/update_version.py false true
3636
- name: Publish to Maven Central

pom.xml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>studio.magemonkey</groupId>
99
<artifactId>magemonkey-parent</artifactId>
10-
<version>1.21.7-R0.1</version>
10+
<version>1.21.7-R0.2</version>
1111
</parent>
1212

1313
<artifactId>divinity</artifactId>
@@ -25,6 +25,10 @@
2525
<id>sonatype</id>
2626
<url>https://central.sonatype.com/repository/maven-snapshots/</url>
2727
</repository>
28+
<repository>
29+
<id>sonatype-legacy</id>
30+
<url>https://s01.oss.sonatype.org/content/repositories/snapshots</url>
31+
</repository>
2832
<!-- Magic API -->
2933
<repository>
3034
<id>elmakers-repo</id>

src/main/java/studio/magemonkey/divinity/Divinity.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
/**
5555
* Divinity
5656
*
57-
* @author ©2024 MageMonkeyStudio
57+
* @author ©2025 MageMonkeyStudio
5858
*/
5959
public class Divinity extends CodexDataPlugin<Divinity, DivinityUser> {
6060

0 commit comments

Comments
 (0)