File tree 2 files changed +10
-14
lines changed 2 files changed +10
-14
lines changed Original file line number Diff line number Diff line change 23
23
distribution : ' temurin'
24
24
java-version : ${{ matrix.java_version }}
25
25
cache : ' maven'
26
- server-id : sonatype-nexus -snapshots
26
+ server-id : central -snapshots
27
27
server-username : CI_DEPLOY_USERNAME
28
28
server-password : CI_DEPLOY_PASSWORD
29
29
# See https://github.com/actions/setup-java/blob/v2/docs/advanced-usage.md#Publishing-using-Apache-Maven
37
37
- name : Deploy snapshot
38
38
if : ${{ github.event_name != 'pull_request' && matrix.java_version == '8' && endsWith(steps.projectVersion.outputs.version, '-SNAPSHOT') }}
39
39
env :
40
- CI_DEPLOY_USERNAME : ${{ secrets.CI_DEPLOY_USERNAME }}
41
- CI_DEPLOY_PASSWORD : ${{ secrets.CI_DEPLOY_PASSWORD }}
40
+ CI_DEPLOY_USERNAME : ${{ secrets.CENTRAL_DEPLOY_USERNAME }}
41
+ CI_DEPLOY_PASSWORD : ${{ secrets.CENTRAL_DEPLOY_PASSWORD }}
42
42
# MAVEN_GPG_PASSPHRASE: ${{ secrets.MAVEN_GPG_PASSPHRASE }}
43
43
run : ./mvnw -B -q -ff -DskipTests -ntp source:jar deploy
Original file line number Diff line number Diff line change @@ -65,19 +65,15 @@ JSON Schema (http://tools.ietf.org/html/draft-zyp-json-schema-03) version 3 gene
65
65
</dependency >
66
66
</dependencies >
67
67
68
- <!-- Alas, need to include snapshot reference since otherwise can not find
69
- snapshot of parent... -->
68
+ <!-- Need to include snapshot reference to find snapshot of parent -->
70
69
<repositories >
70
+ <!-- 13-May-2025, tatu: now access snapshots via Central Portal -->
71
71
<repository >
72
- <id >sonatype-nexus-snapshots</id >
73
- <name >Sonatype Nexus Snapshots</name >
74
- <url >https://oss.sonatype.org/content/repositories/snapshots</url >
75
- <releases >
76
- <enabled >false</enabled >
77
- </releases >
78
- <snapshots >
79
- <enabled >true</enabled >
80
- </snapshots >
72
+ <id >central-snapshots</id >
73
+ <name >Sonatype Central Portal (snapshots)</name >
74
+ <url >https://central.sonatype.com/repository/maven-snapshots</url >
75
+ <releases ><enabled >false</enabled ></releases >
76
+ <snapshots ><enabled >true</enabled ></snapshots >
81
77
</repository >
82
78
</repositories >
83
79
</project >
You can’t perform that action at this time.
0 commit comments