diff --git a/README.md b/README.md index 75f83d9..3fefaf5 100644 --- a/README.md +++ b/README.md @@ -53,13 +53,13 @@ To use the plugin, apply the following two steps: **Groovy** plugins { - id 'io.github.rockcrafters.rockcraft' version '0.2.1' + id 'io.github.rockcrafters.rockcraft' version '0.2.2' } **Kotlin** plugins { - id("io.github.rockcrafters.rockcraft") version "0.2.1" + id("io.github.rockcrafters.rockcraft") version "0.2.2" } ##### Alternatively, you can use the `buildscript` DSL: @@ -73,7 +73,7 @@ To use the plugin, apply the following two steps: } } dependencies { - classpath 'io.github.rockcrafters.rockcraft:0.2.1' + classpath 'io.github.rockcrafters.rockcraft:0.2.2' } } apply plugin: 'io.github.rockcrafters.rockcraft-plugin' @@ -87,7 +87,7 @@ To use the plugin, apply the following two steps: } } dependencies { - classpath("io.github.rockcrafters.rockcraft:0.2.1") + classpath("io.github.rockcrafters.rockcraft:0.2.2") } } apply(plugin = "io.github.rockcrafters.rockcraft") diff --git a/build.gradle.kts b/build.gradle.kts index 6cf7416..cb5f1f8 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -1,5 +1,5 @@ allprojects { - version = "0.2.1" + version = "0.2.2" group = "io.github.rockcrafters" apply(plugin = "maven-publish") plugins.withType().configureEach { diff --git a/examples/gradle/app-options/build.gradle b/examples/gradle/app-options/build.gradle index b4a1170..d4f91bd 100644 --- a/examples/gradle/app-options/build.gradle +++ b/examples/gradle/app-options/build.gradle @@ -1,6 +1,6 @@ plugins { id('application') - id('io.github.rockcrafters.rockcraft') version "0.2.1" + id('io.github.rockcrafters.rockcraft') version "0.2.2" } version = 0.01 diff --git a/examples/gradle/beryx-jlink/build.gradle b/examples/gradle/beryx-jlink/build.gradle index 3f2a9c8..2c71bdd 100644 --- a/examples/gradle/beryx-jlink/build.gradle +++ b/examples/gradle/beryx-jlink/build.gradle @@ -1,6 +1,6 @@ plugins { id('org.beryx.jlink') version "2.24.1" - id('io.github.rockcrafters.rockcraft') version "0.2.1" + id('io.github.rockcrafters.rockcraft') version "0.2.2" } version = 0.01 diff --git a/examples/gradle/beryx-runtime/build.gradle b/examples/gradle/beryx-runtime/build.gradle index 9f3331f..5683afe 100644 --- a/examples/gradle/beryx-runtime/build.gradle +++ b/examples/gradle/beryx-runtime/build.gradle @@ -1,6 +1,6 @@ plugins { id('org.beryx.runtime') version "1.12.5" - id('io.github.rockcrafters.rockcraft') version "0.2.1" + id('io.github.rockcrafters.rockcraft') version "0.2.2" } version = 0.01 diff --git a/examples/gradle/spring-app/build.gradle b/examples/gradle/spring-app/build.gradle index 628149a..5f03cf4 100644 --- a/examples/gradle/spring-app/build.gradle +++ b/examples/gradle/spring-app/build.gradle @@ -2,7 +2,7 @@ plugins { id 'java' id 'org.springframework.boot' version '3.3.4' id 'io.spring.dependency-management' version '1.1.6' - id 'io.github.rockcrafters.rockcraft' version '0.2.1' + id 'io.github.rockcrafters.rockcraft' version '0.2.2' } group = 'com.example' diff --git a/examples/maven/custom-rockcraft/pom.xml b/examples/maven/custom-rockcraft/pom.xml index ef7f72f..b6f0825 100644 --- a/examples/maven/custom-rockcraft/pom.xml +++ b/examples/maven/custom-rockcraft/pom.xml @@ -105,7 +105,7 @@ io.github.rockcrafters rockcraft-maven-plugin - 0.2.1 + 0.2.2 diff --git a/examples/maven/shaded-jar/pom.xml b/examples/maven/shaded-jar/pom.xml index 16888e1..d824f18 100644 --- a/examples/maven/shaded-jar/pom.xml +++ b/examples/maven/shaded-jar/pom.xml @@ -102,7 +102,7 @@ io.github.rockcrafters rockcraft-maven-plugin - 0.2.1 + 0.2.2 diff --git a/examples/maven/spring-boot-app/pom.xml b/examples/maven/spring-boot-app/pom.xml index 34ad2ba..2b86809 100644 --- a/examples/maven/spring-boot-app/pom.xml +++ b/examples/maven/spring-boot-app/pom.xml @@ -50,7 +50,7 @@ io.github.rockcrafters rockcraft-maven-plugin - 0.2.1 + 0.2.2 diff --git a/pom.xml b/pom.xml index e7e42ad..5f2c2a6 100644 --- a/pom.xml +++ b/pom.xml @@ -2,7 +2,7 @@ 4.0.0 io.github.rockcrafters rockcraft-parent - 0.2.1 + 0.2.2 pom 8 diff --git a/rockcraft-gradle/build.gradle.kts b/rockcraft-gradle/build.gradle.kts index fed011d..99a1767 100644 --- a/rockcraft-gradle/build.gradle.kts +++ b/rockcraft-gradle/build.gradle.kts @@ -1,4 +1,5 @@ plugins { + id("com.gradleup.shadow") version "8.3.3" `java-gradle-plugin` id("com.gradle.plugin-publish") version "1.3.0" id ("org.gradlex.reproducible-builds") version "1.0" @@ -9,6 +10,10 @@ repositories { mavenCentral() } +tasks.named("shadowJar") { + archiveClassifier.set("") +} + dependencies { implementation(project(":rockcraft")) implementation(libs.osdetector) diff --git a/rockcraft-maven/pom.xml b/rockcraft-maven/pom.xml index b8f28bb..19bd5c7 100644 --- a/rockcraft-maven/pom.xml +++ b/rockcraft-maven/pom.xml @@ -2,7 +2,7 @@ io.github.rockcrafters rockcraft-parent - 0.2.1 + 0.2.2 maven-plugin diff --git a/rockcraft/pom.xml b/rockcraft/pom.xml index 4269045..e1a84e9 100644 --- a/rockcraft/pom.xml +++ b/rockcraft/pom.xml @@ -2,7 +2,7 @@ io.github.rockcrafters rockcraft-parent - 0.2.1 + 0.2.2 4.0.0