diff --git a/core/build.gradle.kts b/core/build.gradle.kts index 716e50e..4487079 100644 --- a/core/build.gradle.kts +++ b/core/build.gradle.kts @@ -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" } } } diff --git a/gradle-plugin/build.gradle.kts b/gradle-plugin/build.gradle.kts index e7cf1f8..da745e7 100644 --- a/gradle-plugin/build.gradle.kts +++ b/gradle-plugin/build.gradle.kts @@ -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" } } } diff --git a/processor/build.gradle.kts b/processor/build.gradle.kts index 33dbee7..42e1ed3 100644 --- a/processor/build.gradle.kts +++ b/processor/build.gradle.kts @@ -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" } } }