Skip to content

Commit

Permalink
bump to 0.6.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Thomas Schuehly committed Aug 16, 2023
1 parent dd70662 commit 56f8db6
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 10 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.1-SNAPSHOT"
version = "0.6.2-SNAPSHOT"
java.sourceCompatibility = JavaVersion.VERSION_17

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

dependencies {
implementation("de.tschuehly:spring-view-component-jte:0.6.1-SNAPSHOT")
kapt("de.tschuehly:spring-view-component-core:0.6.1-SNAPSHOT")
implementation("de.tschuehly:spring-view-component-jte:0.6.2-SNAPSHOT")
kapt("de.tschuehly:spring-view-component-core:0.6.2-SNAPSHOT")

implementation("org.springframework.boot:spring-boot-starter")
implementation("org.springframework.boot:spring-boot-starter-web")
Expand Down
4 changes: 2 additions & 2 deletions examples/thymeleaf-kotlin-example/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ repositories {
}

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

implementation("org.webjars.npm:htmx.org:1.9.2")
implementation("org.webjars:webjars-locator:0.47")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
<script defer src="/webjars/htmx.org/dist/htmx.min.js"></script>
</head>
<body>
HELLO WORLD94
<h2>ViewAction Get CountUp</h2>

<button view:action="countUp">Default ViewAction [GET]</button>
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.1-SNAPSHOT"
version = "0.6.2-SNAPSHOT"
java.sourceCompatibility = JavaVersion.VERSION_17

repositories {
mavenCentral()
}
dependencies {
api("de.tschuehly:spring-view-component-core:0.6.1-SNAPSHOT")
api("de.tschuehly:spring-view-component-core:0.6.2-SNAPSHOT")
// 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.1-SNAPSHOT"
version = "0.6.2-SNAPSHOT"
java.sourceCompatibility = JavaVersion.VERSION_17

repositories {
mavenCentral()
}

dependencies {
api("de.tschuehly:spring-view-component-core:0.6.1-SNAPSHOT")
api("de.tschuehly:spring-view-component-core:0.6.2-SNAPSHOT")
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 56f8db6

Please sign in to comment.