File tree Expand file tree Collapse file tree 2 files changed +12
-10
lines changed
Expand file tree Collapse file tree 2 files changed +12
-10
lines changed Original file line number Diff line number Diff 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+
4052configure([
4153 project(" :aptools" ), project(" :lombok-ext" ), project(" :reflection-config-generator" )
4254]){
Original file line number Diff line number Diff 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
7666if (project. hasProperty(" signing.keyId" )) {
7767 apply plugin : ' signing'
You can’t perform that action at this time.
0 commit comments