Skip to content

Commit 1af4409

Browse files
committed
Disable maven signing for now.
1 parent 09cbccf commit 1af4409

File tree

1 file changed

+19
-19
lines changed

1 file changed

+19
-19
lines changed

android/build.gradle.kts

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import java.util.Properties
33
plugins {
44
id("com.android.library") version "8.0.1"
55
id("maven-publish")
6-
id("signing")
6+
// id("signing")
77
}
88

99
group = "co.powersync"
@@ -104,19 +104,19 @@ publishing {
104104
}
105105

106106
repositories {
107-
maven {
108-
name = "sonatype"
109-
url = uri("https://oss.sonatype.org/service/local/staging/deploy/maven2/")
110-
credentials {
111-
username = secretProperties.getProperty("ossrhUsername")
112-
password = secretProperties.getProperty("ossrhPassword")
113-
}
114-
}
115-
116-
maven {
117-
name = "here"
118-
url = uri("build/here/")
119-
}
107+
// maven {
108+
// name = "sonatype"
109+
// url = uri("https://oss.sonatype.org/service/local/staging/deploy/maven2/")
110+
// credentials {
111+
// username = secretProperties.getProperty("ossrhUsername")
112+
// password = secretProperties.getProperty("ossrhPassword")
113+
// }
114+
// }
115+
//
116+
// maven {
117+
// name = "here"
118+
// url = uri("build/here/")
119+
// }
120120

121121
maven {
122122
name = "GitHubPackages"
@@ -128,11 +128,11 @@ publishing {
128128
}
129129
}
130130
}
131-
132-
signing {
133-
useGpgCmd()
134-
sign(publishing.publications)
135-
}
131+
//
132+
//signing {
133+
// useGpgCmd()
134+
// sign(publishing.publications)
135+
//}
136136

137137
tasks.withType<AbstractPublishToMaven>() {
138138
dependsOn("assembleRelease")

0 commit comments

Comments
 (0)