Skip to content

Commit 1542cff

Browse files
committed
adjustments
1 parent 914f96f commit 1542cff

File tree

2 files changed

+12
-10
lines changed

2 files changed

+12
-10
lines changed

build.gradle

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,18 @@ subprojects {
3737
}
3838
}
3939

40+
nexusPublishing {
41+
repositories {
42+
mavenCentral {
43+
nexusUrl = uri("https://oss.sonatype.org/service/local/")
44+
snapshotRepositoryUrl = uri("https://oss.sonatype.org/content/repositories/snapshots/")
45+
username = project.findProperty("ossrhUsername")
46+
password = project.findProperty("ossrhPassword")
47+
}
48+
}
49+
}
50+
51+
4052
configure([
4153
project(":aptools"), project(":lombok-ext"), project(":reflection-config-generator")
4254
]){

nexus.gradle

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -62,16 +62,6 @@ publishing {
6262
}
6363
}
6464

65-
nexusPublishing {
66-
repositories {
67-
mavenCentral {
68-
nexusUrl = uri("https://oss.sonatype.org/service/local/")
69-
snapshotRepositoryUrl = uri("https://oss.sonatype.org/content/repositories/snapshots/")
70-
username = project.findProperty("ossrhUsername")
71-
password = project.findProperty("ossrhPassword")
72-
}
73-
}
74-
}
7565

7666
if (project.hasProperty("signing.keyId")) {
7767
apply plugin: 'signing'

0 commit comments

Comments
 (0)