diff --git a/build.gradle b/build.gradle index fa3e40e..9e7af11 100644 --- a/build.gradle +++ b/build.gradle @@ -4,8 +4,8 @@ plugins { id "org.jsonschema2pojo" version "1.2.1" } -group = getProperty("pluginGroup") -version = getProperty("pluginVersion") +group = findProperty("pluginGroup") +version = findProperty("pluginVersion") allprojects { @@ -25,7 +25,7 @@ allprojects { } patchPluginXml { - version = getProperty("pluginVersion") + version = findProperty("pluginVersion") sinceBuild = "232.1" untilBuild = "241.*" def bodyMatcher = /(?s)(?<=).*(?=<\/body>)/ @@ -47,8 +47,8 @@ signPlugin { publishPlugin { token = System.getenv("PUBLISH_TOKEN") - setHidden(getProperty("hidden") as Boolean) - channels = getProperty("preRelease") ? ["autoconfig-beta"] : ["default", "autoconfig-beta"] + setHidden(findProperty("hidden").toBoolean()) + channels = findProperty("preRelease").toBoolean() ? ["autoconfig-beta"] : ["default", "autoconfig-beta"] } repositories { diff --git a/gradle.properties b/gradle.properties index 40a7966..938510e 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,7 +1,7 @@ # Autoconfig Plugin Properties pluginVersion = 0.0.3 preRelease = false -hidden = true +hidden = false pluginGroup = de.gebit.plugins.autoconfig # IntelliJ Plugin Build Support