Skip to content

Commit 118767c

Browse files
committed
Updated URLs to Maven Central & corrected dependency in the extensions.
1 parent 887fed5 commit 118767c

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

annotations/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,8 @@ publishing {
4747
repositories {
4848
maven {
4949
// change URLs to point to your repos, e.g. http://my.org/repo
50-
def releasesRepoUrl = "$buildDir/repos/releases"
51-
def snapshotsRepoUrl = "$buildDir/repos/snapshots"
50+
def releasesRepoUrl = "https://oss.sonatype.org/service/local/staging/deploy/maven2/"
51+
def snapshotsRepoUrl = "https://oss.sonatype.org/content/repositories/snapshots/"
5252
url = version.endsWith('SNAPSHOT') ? snapshotsRepoUrl : releasesRepoUrl
5353
}
5454
}

extensions/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ apply plugin: "signing"
33

44
dependencies {
55
implementation project(":annotations")
6-
implementation 'org.mapstruct:mapstruct:1.4.0.CR1'
76
implementation 'com.squareup:javapoet:1.12.1'
87
implementation 'org.apache.commons:commons-lang3:3.10'
98

9+
testImplementation 'org.mapstruct:mapstruct:1.4.0.CR1'
1010
testImplementation 'org.assertj:assertj-core:3.15.0'
1111
testImplementation 'commons-io:commons-io:2.6'
1212
testImplementation 'com.google.guava:guava:28.2-jre'
@@ -55,8 +55,8 @@ publishing {
5555
repositories {
5656
maven {
5757
// change URLs to point to your repos, e.g. http://my.org/repo
58-
def releasesRepoUrl = "$buildDir/repos/releases"
59-
def snapshotsRepoUrl = "$buildDir/repos/snapshots"
58+
def releasesRepoUrl = "https://oss.sonatype.org/service/local/staging/deploy/maven2/"
59+
def snapshotsRepoUrl = "https://oss.sonatype.org/content/repositories/snapshots/"
6060
url = version.endsWith('SNAPSHOT') ? snapshotsRepoUrl : releasesRepoUrl
6161
}
6262
}

0 commit comments

Comments
 (0)