Skip to content

Commit

Permalink
release: v0.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tschuehly committed Jul 15, 2023
1 parent df93037 commit 8341542
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion core/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ plugins {
}

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

repositories {
Expand Down
2 changes: 1 addition & 1 deletion examples/jte-demo/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ repositories {
}

dependencies {
implementation("de.tschuehly:spring-view-component-jte:0.6.0-SNAPSHOT")
implementation("de.tschuehly:spring-view-component-jte:0.6.0")
// implementation("de.tschuehly:spring-view-component-jte")

implementation("org.springframework.boot:spring-boot-starter")
Expand Down
2 changes: 1 addition & 1 deletion examples/thymeleaf-example/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ repositories {
}

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

implementation("org.webjars.npm:htmx.org:1.9.2")
implementation("org.webjars:webjars-locator:0.47")
Expand Down
4 changes: 2 additions & 2 deletions jte/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,14 @@ plugins {
}

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

repositories {
mavenCentral()
}
dependencies {
api("de.tschuehly:spring-view-component-core:0.6.0-SNAPSHOT")
api("de.tschuehly:spring-view-component-core:0.6.0")
// implementation("gg.jte:jte-spring-boot-starter-3:3.0.0")
implementation(files("./jte-spring-boot-starter-3-3.0.2-SNAPSHOT.jar"))
implementation("org.springframework.boot:spring-boot-starter-web")
Expand Down
4 changes: 2 additions & 2 deletions thymeleaf/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.6.0-SNAPSHOT"
version = "0.6.0"
java.sourceCompatibility = JavaVersion.VERSION_17

repositories {
mavenCentral()
}

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

0 comments on commit 8341542

Please sign in to comment.