Skip to content

Commit

Permalink
Use = to set properties
Browse files Browse the repository at this point in the history
  • Loading branch information
yujincheng08 committed Dec 5, 2023
1 parent 9060665 commit ffafa4d
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 27 deletions.
18 changes: 9 additions & 9 deletions core/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -13,24 +13,24 @@ publish {
version = version
from(components.getByName("java"))
pom {
name.set(project.name)
description.set("String obfuscator for Android applications")
url.set("https://github.com/LSPosed/LSParanoid")
name = project.name
description = "String obfuscator for Android applications"
url = "https://github.com/LSPosed/LSParanoid"
licenses {
license {
name.set("Apache License 2.0")
url.set("https://github.com/LSPosed/LSParanoid/blob/master/LICENSE.txt")
name = "Apache License 2.0"
url ="https://github.com/LSPosed/LSParanoid/blob/master/LICENSE.txt"
}
}
developers {
developer {
name.set("LSPosed")
url.set("https://lsposed.org")
name = "LSPosed"
url = "https://lsposed.org"
}
}
scm {
connection.set("scm:git:https://github.com/LSPosed/LSParanoid.git")
url.set("https://github.com/LSPosed/LSParanoid")
connection = "scm:git:https://github.com/LSPosed/LSParanoid.git"
url = "https://github.com/LSPosed/LSParanoid"
}
}
}
Expand Down
18 changes: 9 additions & 9 deletions gradle-plugin/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -68,24 +68,24 @@ idea {
publish {
githubRepo = "LSPosed/LSParanoid"
publishPlugin("$group", rootProject.name, "org.lsposed.lsparanoid.plugin.LSParanoidPlugin") {
name.set(rootProject.name)
description.set("String obfuscator for Android applications")
url.set("https://github.com/LSPosed/LSParanoid")
name = rootProject.name
description = "String obfuscator for Android applications"
url = "https://github.com/LSPosed/LSParanoid"
licenses {
license {
name.set("Apache License 2.0")
url.set("https://github.com/LSPosed/LSParanoid/blob/master/LICENSE.txt")
name = "Apache License 2.0"
url = "https://github.com/LSPosed/LSParanoid/blob/master/LICENSE.txt"
}
}
developers {
developer {
name.set("LSPosed")
url.set("https://lsposed.org")
name = "LSPosed"
url = "https://lsposed.org"
}
}
scm {
connection.set("scm:git:https://github.com/LSPosed/LSParanoid.git")
url.set("https://github.com/LSPosed/LSParanoid")
connection = "scm:git:https://github.com/LSPosed/LSParanoid.git"
url = "https://github.com/LSPosed/LSParanoid"
}
}
}
18 changes: 9 additions & 9 deletions processor/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -20,24 +20,24 @@ publish {
version = version
from(components.getByName("java"))
pom {
name.set(project.name)
description.set("String obfuscator for Android applications")
url.set("https://github.com/LSPosed/LSParanoid")
name = project.name
description = "String obfuscator for Android applications"
url = "https://github.com/LSPosed/LSParanoid"
licenses {
license {
name.set("Apache License 2.0")
url.set("https://github.com/LSPosed/LSParanoid/blob/master/LICENSE.txt")
name = "Apache License 2.0"
url = "https://github.com/LSPosed/LSParanoid/blob/master/LICENSE.txt"
}
}
developers {
developer {
name.set("LSPosed")
url.set("https://lsposed.org")
name = "LSPosed"
url = "https://lsposed.org"
}
}
scm {
connection.set("scm:git:https://github.com/LSPosed/LSParanoid.git")
url.set("https://github.com/LSPosed/LSParanoid")
connection = "scm:git:https://github.com/LSPosed/LSParanoid.git"
url = "https://github.com/LSPosed/LSParanoid"
}
}
}
Expand Down

0 comments on commit ffafa4d

Please sign in to comment.