Skip to content

Commit

Permalink
release: v0.7.3
Browse files Browse the repository at this point in the history
  • Loading branch information
tschuehly committed Apr 6, 2024
1 parent c921403 commit 0e88cb3
Show file tree
Hide file tree
Showing 11 changed files with 42 additions and 42 deletions.
12 changes: 6 additions & 6 deletions core/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
import org.jreleaser.model.Active

plugins {
id("org.springframework.boot") version "3.1.2"
id("io.spring.dependency-management") version "1.1.2"
kotlin("jvm") version "1.8.21"
kotlin("plugin.spring") version "1.8.21"
id("org.springframework.boot") version "3.2.4"
id("io.spring.dependency-management") version "1.1.4"
kotlin("jvm") version "1.9.23"
kotlin("plugin.spring") version "1.9.23"

id("maven-publish")
id("org.jreleaser") version "1.11.0"
Expand All @@ -14,7 +14,7 @@ plugins {
}

group = "de.tschuehly"
version = "0.7.3-SNAPSHOT"
version = "0.7.3"
java.sourceCompatibility = JavaVersion.VERSION_17

repositories {
Expand All @@ -34,7 +34,7 @@ dependencies {
testFixturesImplementation("org.springframework.boot:spring-boot-starter-web")
testFixturesImplementation("org.springframework.boot:spring-boot-devtools")

implementation("de.tschuehly:spring-view-component-jte-compiler:0.7.3-SNAPSHOT")
implementation("de.tschuehly:spring-view-component-jte-compiler:0.7.3")

}

Expand Down
10 changes: 5 additions & 5 deletions examples/jte-example/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,15 @@ repositories {
dependencies {
implementation("org.springframework.boot:spring-boot-starter-web")

implementation("de.tschuehly:spring-view-component-jte:0.7.3-SNAPSHOT")
annotationProcessor("de.tschuehly:spring-view-component-core:0.7.3-SNAPSHOT")
implementation("de.tschuehly:spring-view-component-jte:0.7.3")
annotationProcessor("de.tschuehly:spring-view-component-core:0.7.3")

implementation("org.webjars.npm:htmx.org:1.9.2")
implementation("org.webjars:webjars-locator-core:0.53")
implementation("org.webjars.npm:htmx.org:1.9.11")
implementation("org.webjars:webjars-locator-core:0.58")

testImplementation("org.springframework.boot:spring-boot-starter-test")
testRuntimeOnly("org.springframework.boot:spring-boot-devtools")
testImplementation(testFixtures("de.tschuehly:spring-view-component-core:0.7.3-SNAPSHOT"))
testImplementation(testFixtures("de.tschuehly:spring-view-component-core:0.7.3"))
}

tasks.withType<Test> {
Expand Down
4 changes: 2 additions & 2 deletions examples/jte-example/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<description>JTE Example</description>
<properties>
<java.version>17</java.version>
<view.component.version>0.7.3-SNAPSHOT</view.component.version>
<view.component.version>0.7.3</view.component.version>
</properties>
<dependencies>
<dependency>
Expand All @@ -42,7 +42,7 @@
<dependency>
<groupId>org.webjars.npm</groupId>
<artifactId>htmx.org</artifactId>
<version>1.9.2</version>
<version>1.9.11</version>
</dependency>
<dependency>
<groupId>org.webjars</groupId>
Expand Down
12 changes: 6 additions & 6 deletions examples/kte-example/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,12 @@ repositories {
}

dependencies {
implementation("de.tschuehly:spring-view-component-kte:0.7.3-SNAPSHOT")
kapt("de.tschuehly:spring-view-component-core:0.7.3-SNAPSHOT")
implementation("io.github.wimdeblauwe:htmx-spring-boot:3.0.0")
implementation("de.tschuehly:spring-view-component-kte:0.7.3")
kapt("de.tschuehly:spring-view-component-core:0.7.3")
implementation("io.github.wimdeblauwe:htmx-spring-boot:3.1.1")

implementation("org.webjars.npm:htmx.org:1.9.2")
implementation("org.webjars:webjars-locator:0.47")
implementation("org.webjars.npm:htmx.org:1.9.11")
implementation("org.webjars:webjars-locator:0.52")

implementation("org.springframework.boot:spring-boot-starter")
implementation("org.springframework.boot:spring-boot-starter-web")
Expand All @@ -36,7 +36,7 @@ dependencies {

testImplementation("org.springframework.boot:spring-boot-starter-test")
testImplementation("org.springframework.boot:spring-boot-devtools")
testImplementation(testFixtures("de.tschuehly:spring-view-component-core:0.7.3-SNAPSHOT"))
testImplementation(testFixtures("de.tschuehly:spring-view-component-core:0.7.3"))
}

tasks.withType<KotlinCompile> {
Expand Down
10 changes: 5 additions & 5 deletions examples/thymeleaf-java-example/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,15 @@ 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.3-SNAPSHOT")
annotationProcessor("de.tschuehly:spring-view-component-core:0.7.3-SNAPSHOT")
implementation("de.tschuehly:spring-view-component-thymeleaf:0.7.3")
annotationProcessor("de.tschuehly:spring-view-component-core:0.7.3")

implementation("org.webjars.npm:htmx.org:1.9.2")
implementation("org.webjars:webjars-locator-core:0.53")
implementation("org.webjars.npm:htmx.org:1.9.11")
implementation("org.webjars:webjars-locator-core:0.58")
testImplementation("org.springframework.boot:spring-boot-starter-test")

testImplementation("org.springframework.boot:spring-boot-devtools")
testImplementation(testFixtures("de.tschuehly:spring-view-component-core:0.7.3-SNAPSHOT"))
testImplementation(testFixtures("de.tschuehly:spring-view-component-core:0.7.3"))
}

tasks.withType<Test> {
Expand Down
2 changes: 1 addition & 1 deletion examples/thymeleaf-java-example/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<description>Thymeleaf Java Example</description>
<properties>
<java.version>17</java.version>
<view.component.version>0.7.3-SNAPSHOT</view.component.version>
<view.component.version>0.7.3</view.component.version>
</properties>
<dependencies>
<dependency>
Expand Down
6 changes: 3 additions & 3 deletions examples/thymeleaf-kotlin-example/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ repositories {
}

dependencies {
implementation("de.tschuehly:spring-view-component-thymeleaf:0.7.3-SNAPSHOT")
kapt("de.tschuehly:spring-view-component-core:0.7.3-SNAPSHOT")
implementation("de.tschuehly:spring-view-component-thymeleaf:0.7.3")
kapt("de.tschuehly:spring-view-component-core:0.7.3")

implementation("org.webjars.npm:htmx.org:1.9.2")
implementation("org.webjars:webjars-locator:0.47")
Expand All @@ -41,7 +41,7 @@ dependencies {
implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8")

testImplementation("org.springframework.boot:spring-boot-devtools")
testImplementation(testFixtures("de.tschuehly:spring-view-component-core:0.7.3-SNAPSHOT"))
testImplementation(testFixtures("de.tschuehly:spring-view-component-core:0.7.3"))
}

tasks.withType<KotlinCompile> {
Expand Down
2 changes: 1 addition & 1 deletion jte/jte-compiler/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ plugins {
}

group = "de.tschuehly"
version = "0.7.3-SNAPSHOT"
version = "0.7.3"
java.sourceCompatibility = JavaVersion.VERSION_17

repositories {
Expand Down
8 changes: 4 additions & 4 deletions jte/jte/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,15 @@ plugins {
}

group = "de.tschuehly"
version = "0.7.3-SNAPSHOT"
version = "0.7.3"
java.sourceCompatibility = JavaVersion.VERSION_17

repositories {
mavenCentral()
}
dependencies {
api("gg.jte:jte:3.1.9")
api("de.tschuehly:spring-view-component-core:0.7.3-SNAPSHOT")
api("de.tschuehly:spring-view-component-core:0.7.3")

implementation("gg.jte:jte-spring-boot-starter-3:3.1.9")
implementation("org.springframework.boot:spring-boot-starter-web")
Expand All @@ -30,8 +30,8 @@ dependencies {
implementation("org.jetbrains.kotlin:kotlin-reflect")
testImplementation("org.springframework.boot:spring-boot-starter-actuator")
testImplementation("org.springframework.boot:spring-boot-starter-test")
testImplementation("org.webjars:webjars-locator:0.47")
testImplementation("org.webjars.npm:htmx.org:1.9.2")
testImplementation("org.webjars:webjars-locator:0.52")
testImplementation("org.webjars.npm:htmx.org:1.9.11")
}

tasks.withType<KotlinCompile> {
Expand Down
10 changes: 5 additions & 5 deletions jte/kte/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -13,21 +13,21 @@ plugins {
}

group = "de.tschuehly"
version = "0.7.3-SNAPSHOT"
version = "0.7.3"
java.sourceCompatibility = JavaVersion.VERSION_17

repositories {
mavenCentral()
}
dependencies {
api("de.tschuehly:spring-view-component-core:0.7.3-SNAPSHOT")
api("de.tschuehly:spring-view-component-jte:0.7.3-SNAPSHOT")
api("de.tschuehly:spring-view-component-core:0.7.3")
api("de.tschuehly:spring-view-component-jte:0.7.3")
api("gg.jte:jte-kotlin:3.1.9")

testImplementation("org.springframework.boot:spring-boot-starter-actuator")
testImplementation("org.springframework.boot:spring-boot-starter-test")
testImplementation("org.webjars:webjars-locator:0.47")
testImplementation("org.webjars.npm:htmx.org:1.9.2")
testImplementation("org.webjars:webjars-locator:0.52")
testImplementation("org.webjars.npm:htmx.org:1.9.11")
}

tasks.withType<KotlinCompile> {
Expand Down
8 changes: 4 additions & 4 deletions thymeleaf/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -13,24 +13,24 @@ plugins {
}

group = "de.tschuehly"
version = "0.7.3-SNAPSHOT"
version = "0.7.3"
java.sourceCompatibility = JavaVersion.VERSION_17

repositories {
mavenCentral()
}

dependencies {
api("de.tschuehly:spring-view-component-core:0.7.3-SNAPSHOT")
api("de.tschuehly:spring-view-component-core:0.7.3")
implementation("org.springframework.boot:spring-boot-starter-web")
implementation("org.springframework.boot:spring-boot-starter-thymeleaf")
implementation("org.springframework.boot:spring-boot-devtools")

testImplementation("org.springframework.boot:spring-boot-starter-actuator")
testImplementation("org.springframework.boot:spring-boot-starter-test")

testImplementation("org.webjars:webjars-locator:0.47")
testImplementation("org.webjars.npm:htmx.org:1.9.2")
testImplementation("org.webjars:webjars-locator:0.52")
testImplementation("org.webjars.npm:htmx.org:1.9.11")
}

tasks.withType<KotlinCompile> {
Expand Down

0 comments on commit 0e88cb3

Please sign in to comment.