chore: publicate to revanced

This commit is contained in:
oSumAtrIX 2023-01-16 16:02:47 +01:00
parent 7419b19f9a
commit fa09633c02
No known key found for this signature in database
GPG Key ID: A9B3094ACDB604B4
4 changed files with 28 additions and 28 deletions

View File

@ -73,13 +73,13 @@ tasks.getByPath('build').dependsOn(fatJar)
publish { publish {
publishing { publishing {
publications { repositories {
mavenJava(MavenPublication) { maven {
pom { name = "GitHubPackages"
description = 'baksmali is a disassembler for dalvik bytecode' url = uri("https://maven.pkg.github.com/revanced/smali")
scm { credentials {
url = 'https://github.com/JesusFreke/smali/tree/master/baksmali' username = project.findProperty("gpr.user") ?: System.getenv("USERNAME")
} password = project.findProperty("gpr.key") ?: System.getenv("TOKEN")
} }
} }
} }

View File

@ -95,13 +95,13 @@ task generateAccessorTestDex(type: JavaExec, dependsOn: compileAccessorTestJava)
publish { publish {
publishing { publishing {
publications { repositories {
mavenJava(MavenPublication) { maven {
pom { name = "GitHubPackages"
description = 'dexlib2 is a library for reading/modifying/writing Android dex files' url = uri("https://maven.pkg.github.com/revanced/smali")
scm { credentials {
url = 'https://github.com/JesusFreke/smali/tree/master/dexlib2' username = project.findProperty("gpr.user") ?: System.getenv("USERNAME")
} password = project.findProperty("gpr.key") ?: System.getenv("TOKEN")
} }
} }
} }

View File

@ -121,13 +121,13 @@ jflex {
publish { publish {
publishing { publishing {
publications { repositories {
mavenJava(MavenPublication) { maven {
pom { name = "GitHubPackages"
description = 'smali is an assembler for dalvik bytecode' url = uri("https://maven.pkg.github.com/revanced/smali")
scm { credentials {
url = 'https://github.com/JesusFreke/smali/tree/master/smali' username = project.findProperty("gpr.user") ?: System.getenv("USERNAME")
} password = project.findProperty("gpr.key") ?: System.getenv("TOKEN")
} }
} }
} }

View File

@ -39,13 +39,13 @@ dependencies {
publish { publish {
publishing { publishing {
publications { repositories {
mavenJava(MavenPublication) { maven {
pom { name = "GitHubPackages"
description = 'This library contains random utilities used by smali/baksmali/dexlib2' url = uri("https://maven.pkg.github.com/revanced/smali")
scm { credentials {
url = 'https://github.com/JesusFreke/smali/tree/master/util' username = project.findProperty("gpr.user") ?: System.getenv("USERNAME")
} password = project.findProperty("gpr.key") ?: System.getenv("TOKEN")
} }
} }
} }