diff --git a/core/build.gradle.kts b/core/build.gradle.kts index 87688f0..36a8bea 100644 --- a/core/build.gradle.kts +++ b/core/build.gradle.kts @@ -13,7 +13,7 @@ plugins { } group = "de.tschuehly" -version = "0.7.0-SNAPSHOT" +version = "0.7.0" java.sourceCompatibility = JavaVersion.VERSION_17 repositories { @@ -22,7 +22,7 @@ repositories { } dependencies { - implementation("de.tschuehly:spring-view-component-jte-compiler:0.7.0-SNAPSHOT") + implementation("de.tschuehly:spring-view-component-jte-compiler:0.7.0") implementation("org.springframework.boot:spring-boot-starter-web") implementation("org.springframework.boot:spring-boot-starter-aop") implementation("org.springframework.boot:spring-boot-devtools") diff --git a/examples/jte-example/build.gradle.kts b/examples/jte-example/build.gradle.kts index f40819d..b3d5d42 100644 --- a/examples/jte-example/build.gradle.kts +++ b/examples/jte-example/build.gradle.kts @@ -19,8 +19,8 @@ repositories { dependencies { implementation("org.springframework.boot:spring-boot-starter-web") - implementation("de.tschuehly:spring-view-component-jte:0.7.0-SNAPSHOT") - annotationProcessor("de.tschuehly:spring-view-component-core:0.7.0-SNAPSHOT") + implementation("de.tschuehly:spring-view-component-jte:0.7.0") + annotationProcessor("de.tschuehly:spring-view-component-core:0.7.0") implementation("org.webjars.npm:htmx.org:1.9.2") implementation("org.webjars:webjars-locator-core:0.53") diff --git a/examples/jte-example/pom.xml b/examples/jte-example/pom.xml index f9a7e53..bf764d7 100644 --- a/examples/jte-example/pom.xml +++ b/examples/jte-example/pom.xml @@ -15,7 +15,7 @@ JTE Example 17 - 0.7.0-SNAPSHOT + 0.7.0 diff --git a/examples/kte-example/build.gradle.kts b/examples/kte-example/build.gradle.kts index 3281790..bf4bf38 100644 --- a/examples/kte-example/build.gradle.kts +++ b/examples/kte-example/build.gradle.kts @@ -18,8 +18,8 @@ repositories { } dependencies { - implementation("de.tschuehly:spring-view-component-jte:0.7.0-SNAPSHOT") - kapt("de.tschuehly:spring-view-component-core:0.7.0-SNAPSHOT") + implementation("de.tschuehly:spring-view-component-jte:0.7.0") + kapt("de.tschuehly:spring-view-component-core:0.7.0") implementation("io.github.wimdeblauwe:htmx-spring-boot:3.0.0") implementation("org.webjars.npm:htmx.org:1.9.2") diff --git a/examples/thymeleaf-java-example/build.gradle.kts b/examples/thymeleaf-java-example/build.gradle.kts index 1a170df..827dba4 100644 --- a/examples/thymeleaf-java-example/build.gradle.kts +++ b/examples/thymeleaf-java-example/build.gradle.kts @@ -19,8 +19,8 @@ repositories { dependencies { implementation("org.springframework.boot:spring-boot-starter-web") developmentOnly("org.springframework.boot:spring-boot-devtools") - implementation("de.tschuehly:spring-view-component-thymeleaf:0.7.0-SNAPSHOT") - annotationProcessor("de.tschuehly:spring-view-component-core:0.7.0-SNAPSHOT") + implementation("de.tschuehly:spring-view-component-thymeleaf:0.7.0") + annotationProcessor("de.tschuehly:spring-view-component-core:0.7.0") implementation("org.webjars.npm:htmx.org:1.9.2") implementation("org.webjars:webjars-locator-core:0.53") diff --git a/examples/thymeleaf-java-example/pom.xml b/examples/thymeleaf-java-example/pom.xml index 11a0159..8767753 100644 --- a/examples/thymeleaf-java-example/pom.xml +++ b/examples/thymeleaf-java-example/pom.xml @@ -15,7 +15,7 @@ Thymeleaf Java Example 17 - 0.7.0-SNAPSHOT + 0.7.0 diff --git a/examples/thymeleaf-kotlin-example/build.gradle.kts b/examples/thymeleaf-kotlin-example/build.gradle.kts index 4ca83d4..98ce2d6 100644 --- a/examples/thymeleaf-kotlin-example/build.gradle.kts +++ b/examples/thymeleaf-kotlin-example/build.gradle.kts @@ -24,8 +24,8 @@ repositories { } dependencies { - implementation("de.tschuehly:spring-view-component-thymeleaf:0.7.0-SNAPSHOT") - kapt("de.tschuehly:spring-view-component-core:0.7.0-SNAPSHOT") + implementation("de.tschuehly:spring-view-component-thymeleaf:0.7.0") + kapt("de.tschuehly:spring-view-component-core:0.7.0") implementation("org.webjars.npm:htmx.org:1.9.2") implementation("org.webjars:webjars-locator:0.47") diff --git a/jte/jte-compiler/build.gradle.kts b/jte/jte-compiler/build.gradle.kts index 795d03f..0182664 100644 --- a/jte/jte-compiler/build.gradle.kts +++ b/jte/jte-compiler/build.gradle.kts @@ -9,7 +9,7 @@ plugins { } group = "de.tschuehly" -version = "0.7.0-SNAPSHOT" +version = "0.7.0" java.sourceCompatibility = JavaVersion.VERSION_17 repositories { diff --git a/jte/jte/build.gradle.kts b/jte/jte/build.gradle.kts index 1532722..77fe851 100644 --- a/jte/jte/build.gradle.kts +++ b/jte/jte/build.gradle.kts @@ -13,14 +13,14 @@ plugins { } group = "de.tschuehly" -version = "0.7.0-SNAPSHOT" +version = "0.7.0" java.sourceCompatibility = JavaVersion.VERSION_17 repositories { mavenCentral() } dependencies { - api("de.tschuehly:spring-view-component-core:0.7.0-SNAPSHOT") + api("de.tschuehly:spring-view-component-core:0.7.0") implementation("gg.jte:jte-spring-boot-starter-3:3.1.0") implementation("org.springframework.boot:spring-boot-starter-web") implementation("org.springframework.boot:spring-boot-starter-aop") diff --git a/thymeleaf/build.gradle.kts b/thymeleaf/build.gradle.kts index e1aa4aa..34aafde 100644 --- a/thymeleaf/build.gradle.kts +++ b/thymeleaf/build.gradle.kts @@ -13,7 +13,7 @@ plugins { } group = "de.tschuehly" -version = "0.7.0-SNAPSHOT" +version = "0.7.0" java.sourceCompatibility = JavaVersion.VERSION_17 repositories { @@ -21,7 +21,7 @@ repositories { } dependencies { - api("de.tschuehly:spring-view-component-core:0.7.0-SNAPSHOT") + api("de.tschuehly:spring-view-component-core:0.7.0") implementation("org.springframework.boot:spring-boot-starter-web") implementation("org.springframework.boot:spring-boot-starter-thymeleaf") implementation("org.springframework.boot:spring-boot-devtools")