File tree Expand file tree Collapse file tree 3 files changed +15
-5
lines changed Expand file tree Collapse file tree 3 files changed +15
-5
lines changed Original file line number Diff line number Diff line change @@ -118,8 +118,13 @@ publishing {
118
118
}
119
119
120
120
repositories {
121
- // Note: this is temporary in local env
122
- maven(url = layout.buildDirectory.dir(" maven-repo" ))
121
+ maven(url = " https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/" ) {
122
+ name = " sonatype"
123
+ credentials {
124
+ username = (project.properties[" ossrhUsername" ] as String? )? : " "
125
+ password = (project.properties[" ossrhPassword" ] as String? )? : " "
126
+ }
127
+ }
123
128
}
124
129
}
125
130
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ jose4j = "0.7.9"
13
13
kotlin = " 1.5.32"
14
14
kover = " 0.5.0"
15
15
logbackClassic = " 1.2.10"
16
- logtoSdk = " 1.0 .0"
16
+ logtoSdk = " 0.1 .0"
17
17
material = " 1.4.0"
18
18
mockk = " 1.12.2"
19
19
okhttp = " 4.9.3"
Original file line number Diff line number Diff line change @@ -83,8 +83,13 @@ publishing {
83
83
}
84
84
85
85
repositories {
86
- // Note: this is temporary in local env
87
- maven(url = layout.buildDirectory.dir(" maven-repo" ))
86
+ maven(url = " https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/" ) {
87
+ name = " sonatype"
88
+ credentials {
89
+ username = (project.properties[" ossrhUsername" ] as String? )? : " "
90
+ password = (project.properties[" ossrhPassword" ] as String? )? : " "
91
+ }
92
+ }
88
93
}
89
94
}
90
95
You can’t perform that action at this time.
0 commit comments