mirror of
https://github.com/revanced/Apktool.git
synced 2025-04-30 06:04:25 +02:00
build: change publication repository
This commit is contained in:
parent
72ffcbbc44
commit
b16e1763c0
@ -109,14 +109,10 @@ subprojects {
|
||||
publishing {
|
||||
repositories {
|
||||
maven {
|
||||
url = if (suffix.contains("SNAPSHOT")) {
|
||||
uri("https://s01.oss.sonatype.org/content/repositories/snapshots/")
|
||||
} else {
|
||||
uri("https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/")
|
||||
}
|
||||
url = uri("https://maven.pkg.github.com/revanced/Apktool")
|
||||
credentials {
|
||||
username = (project.properties["ossrhUsername"] ?: "").toString()
|
||||
password = (project.properties["ossrhPassword"] ?: "").toString()
|
||||
username = System.getenv("GITHUB_ACTOR") ?: project.findProperty("gpr.user").toString()
|
||||
password = System.getenv("GITHUB_TOKEN") ?: project.findProperty("gpr.key").toString()
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -151,9 +147,9 @@ subprojects {
|
||||
}
|
||||
}
|
||||
scm {
|
||||
connection = "scm:git:git://github.com/iBotPeaches/Apktool.git"
|
||||
developerConnection = "scm:git:git@github.com:iBotPeaches/Apktool.git"
|
||||
url = "https://github.com/iBotPeaches/Apktool"
|
||||
connection = "scm:git:git://github.com/revanced/Apktool.git"
|
||||
developerConnection = "scm:git:git@github.com:revanced/Apktool.git"
|
||||
url = "https://github.com/revanced/Apktool"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user