Skip to content

Commit 3dbe1ef

Browse files
committed
Version 2.0.0
1 parent 9a045cf commit 3dbe1ef

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

annotations/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,8 @@ publishing {
4747
}
4848
repositories {
4949
maven {
50-
def releasesRepoUrl = "https://oss.sonatype.org/service/local/staging/deploy/maven2/"
51-
def snapshotsRepoUrl = "https://oss.sonatype.org/content/repositories/snapshots/"
50+
def releasesRepoUrl = "https://ossrh-staging-api.central.sonatype.com/service/local/staging/deploy/maven2/"
51+
def snapshotsRepoUrl = "https://ossrh-staging-api.central.sonatype.com/content/repositories/snapshots/"
5252
url = version.endsWith('SNAPSHOT') ? snapshotsRepoUrl : releasesRepoUrl
5353

5454
credentials {
@@ -66,6 +66,6 @@ signing {
6666

6767
javadoc {
6868
options.links = [
69-
"https://docs.spring.io/spring/docs/5.0.0.RELEASE/javadoc-api/"
69+
"https://docs.spring.io/spring/docs/6.0.0/javadoc-api/"
7070
]
7171
}

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ subprojects {
5555
apply plugin: "jacoco"
5656

5757
group = 'org.mapstruct.extensions.spring'
58-
version = '2.0.0-SNAPSHOT'
58+
version = '2.0.0'
5959

6060
java {
6161
toolchain {

extensions/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,8 @@ publishing {
5757
}
5858
repositories {
5959
maven {
60-
def releasesRepoUrl = "https://oss.sonatype.org/service/local/staging/deploy/maven2/"
61-
def snapshotsRepoUrl = "https://oss.sonatype.org/content/repositories/snapshots/"
60+
def releasesRepoUrl = "https://ossrh-staging-api.central.sonatype.com/service/local/staging/deploy/maven2/"
61+
def snapshotsRepoUrl = "https://ossrh-staging-api.central.sonatype.com/content/repositories/snapshots/"
6262
url = version.endsWith('SNAPSHOT') ? snapshotsRepoUrl : releasesRepoUrl
6363

6464
credentials {

test-extensions/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,8 @@ publishing {
5353
}
5454
repositories {
5555
maven {
56-
def releasesRepoUrl = "https://oss.sonatype.org/service/local/staging/deploy/maven2/"
57-
def snapshotsRepoUrl = "https://oss.sonatype.org/content/repositories/snapshots/"
56+
def releasesRepoUrl = "https://ossrh-staging-api.central.sonatype.com/service/local/staging/deploy/maven2/"
57+
def snapshotsRepoUrl = "https://ossrh-staging-api.central.sonatype.com/content/repositories/snapshots/"
5858
url = version.endsWith('SNAPSHOT') ? snapshotsRepoUrl : releasesRepoUrl
5959

6060
credentials {

0 commit comments

Comments
 (0)