File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -227,7 +227,7 @@ spring.view-component.local-development=true
227227 <summary>Gradle</summary>
228228
229229``` kotlin
230- implementation(" de.tschuehly:spring-view-component-thymeleaf:0.9.0-SNAPSHOT " )
230+ implementation(" de.tschuehly:spring-view-component-thymeleaf:0.9.0" )
231231sourceSets {
232232 main {
233233 resources {
@@ -249,7 +249,7 @@ sourceSets {
249249 <dependency >
250250 <groupId >de.tschuehly</groupId >
251251 <artifactId >spring-view-component-thymeleaf</artifactId >
252- <version >0.9.0-SNAPSHOT </version >
252+ <version >0.9.0</version >
253253 </dependency >
254254 </dependencies >
255255 <build >
@@ -289,7 +289,7 @@ plugins {
289289 id(" gg.jte.gradle" ) version(" 3.2.1" )
290290}
291291
292- implementation(" de.tschuehly:spring-view-component-jte:0.9.0-SNAPSHOT " )
292+ implementation(" de.tschuehly:spring-view-component-jte:0.9.0" )
293293
294294jte{
295295 generate()
308308 <dependency >
309309 <groupId >de.tschuehly</groupId >
310310 <artifactId >spring-view-component-jte</artifactId >
311- <version >0.9.0-SNAPSHOT </version >
311+ <version >0.9.0</version >
312312 </dependency >
313313 </dependencies >
314314 <build >
@@ -352,7 +352,7 @@ plugins {
352352}
353353
354354dependencies {
355- implementation(" de.tschuehly:spring-view-component-kte:0.9.0-SNAPSHOT " )
355+ implementation(" de.tschuehly:spring-view-component-kte:0.9.0" )
356356}
357357
358358jte {
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ plugins {
1313}
1414
1515group = " de.tschuehly"
16- version = " 0.9.0-SNAPSHOT "
16+ version = " 0.9.0"
1717java.sourceCompatibility = JavaVersion .VERSION_17
1818
1919repositories {
Original file line number Diff line number Diff line change @@ -26,15 +26,15 @@ repositories {
2626dependencies {
2727 implementation(" org.springframework.boot:spring-boot-starter-web" )
2828
29- implementation(" de.tschuehly:spring-view-component-jte:0.9.0-SNAPSHOT " )
29+ implementation(" de.tschuehly:spring-view-component-jte:0.9.0" )
3030
3131 implementation(" org.webjars.npm:htmx.org:1.9.11" )
3232 implementation(" org.webjars:webjars-locator-lite:1.1.0" )
3333 runtimeOnly(" org.springframework.boot:spring-boot-devtools" )
3434
3535 testImplementation(" org.springframework.boot:spring-boot-starter-test" )
3636 testRuntimeOnly(" org.springframework.boot:spring-boot-devtools" )
37- testImplementation(testFixtures(" de.tschuehly:spring-view-component-core:0.9.0-SNAPSHOT " ))
37+ testImplementation(testFixtures(" de.tschuehly:spring-view-component-core:0.9.0" ))
3838}
3939
4040tasks.withType<Test > {
Original file line number Diff line number Diff line change 1515 <description >JTE Example</description >
1616 <properties >
1717 <java .version>17</java .version>
18- <view .component.version>0.9.0-SNAPSHOT </view .component.version>
18+ <view .component.version>0.9.0</view .component.version>
1919 </properties >
2020 <dependencies >
2121 <dependency >
Original file line number Diff line number Diff line change @@ -31,8 +31,8 @@ repositories {
3131}
3232
3333dependencies {
34- implementation(" de.tschuehly:spring-view-component-kte:0.9.0-SNAPSHOT " )
35- implementation(" de.tschuehly:spring-view-component-core:0.9.0-SNAPSHOT " )
34+ implementation(" de.tschuehly:spring-view-component-kte:0.9.0" )
35+ implementation(" de.tschuehly:spring-view-component-core:0.9.0" )
3636 implementation(" io.github.wimdeblauwe:htmx-spring-boot:4.0.1" )
3737
3838 implementation(" org.webjars.npm:htmx.org:1.9.11" )
@@ -47,7 +47,7 @@ dependencies {
4747
4848 testImplementation(" org.springframework.boot:spring-boot-starter-test" )
4949 testImplementation(" org.springframework.boot:spring-boot-devtools" )
50- testImplementation(testFixtures(" de.tschuehly:spring-view-component-core:0.9.0-SNAPSHOT " ))
50+ testImplementation(testFixtures(" de.tschuehly:spring-view-component-core:0.9.0" ))
5151}
5252
5353kotlin {
Original file line number Diff line number Diff line change @@ -29,14 +29,14 @@ repositories {
2929
3030dependencies {
3131 implementation(" org.springframework.boot:spring-boot-starter-web" )
32- implementation(" de.tschuehly:spring-view-component-thymeleaf:0.9.0-SNAPSHOT " )
32+ implementation(" de.tschuehly:spring-view-component-thymeleaf:0.9.0" )
3333
3434 implementation(" org.webjars.npm:htmx.org:1.9.11" )
3535 implementation(" org.webjars:webjars-locator-lite:1.1.0" )
3636
3737 testImplementation(" org.springframework.boot:spring-boot-starter-test" )
3838 testImplementation(" org.springframework.boot:spring-boot-devtools" )
39- testImplementation(testFixtures(" de.tschuehly:spring-view-component-core:0.9.0-SNAPSHOT " ))
39+ testImplementation(testFixtures(" de.tschuehly:spring-view-component-core:0.9.0" ))
4040}
4141
4242tasks.withType<Test > {
Original file line number Diff line number Diff line change 1515 <description >Thymeleaf Java Example</description >
1616 <properties >
1717 <java .version>17</java .version>
18- <view .component.version>0.9.0-SNAPSHOT </view .component.version>
18+ <view .component.version>0.9.0</view .component.version>
1919 </properties >
2020 <dependencies >
2121 <dependency >
Original file line number Diff line number Diff line change @@ -18,8 +18,8 @@ repositories {
1818}
1919
2020dependencies {
21- implementation(" de.tschuehly:spring-view-component-thymeleaf:0.9.0-SNAPSHOT " )
22- implementation(" de.tschuehly:spring-view-component-core:0.9.0-SNAPSHOT " )
21+ implementation(" de.tschuehly:spring-view-component-thymeleaf:0.9.0" )
22+ implementation(" de.tschuehly:spring-view-component-core:0.9.0" )
2323
2424 implementation(" org.webjars.npm:htmx.org:1.9.2" )
2525 implementation(" org.webjars:webjars-locator-lite:1.1.0" )
@@ -35,7 +35,7 @@ dependencies {
3535 implementation(" org.jetbrains.kotlin:kotlin-stdlib-jdk8" )
3636
3737 testImplementation(" org.springframework.boot:spring-boot-devtools" )
38- testImplementation(testFixtures(" de.tschuehly:spring-view-component-core:0.9.0-SNAPSHOT " ))
38+ testImplementation(testFixtures(" de.tschuehly:spring-view-component-core:0.9.0" ))
3939}
4040
4141kotlin {
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ plugins {
1313}
1414
1515group = " de.tschuehly"
16- version = " 0.9.0-SNAPSHOT "
16+ version = " 0.9.0"
1717java.sourceCompatibility = JavaVersion .VERSION_17
1818
1919repositories {
@@ -22,7 +22,7 @@ repositories {
2222}
2323dependencies {
2424 api(" gg.jte:jte:3.2.1" )
25- api(" de.tschuehly:spring-view-component-core:0.9.0-SNAPSHOT " )
25+ api(" de.tschuehly:spring-view-component-core:0.9.0" )
2626
2727 implementation(" gg.jte:jte-spring-boot-starter-3:3.2.1" )
2828 implementation(" org.springframework.boot:spring-boot-starter-web" )
Original file line number Diff line number Diff line change @@ -14,15 +14,15 @@ plugins {
1414}
1515
1616group = " de.tschuehly"
17- version = " 0.9.0-SNAPSHOT "
17+ version = " 0.9.0"
1818java.sourceCompatibility = JavaVersion .VERSION_17
1919
2020repositories {
2121 mavenCentral()
2222}
2323dependencies {
2424 api(" gg.jte:jte-kotlin:3.2.1" )
25- api(" de.tschuehly:spring-view-component-core:0.9.0-SNAPSHOT " )
25+ api(" de.tschuehly:spring-view-component-core:0.9.0" )
2626
2727 implementation(" gg.jte:jte-spring-boot-starter-3:3.2.1" )
2828 implementation(" org.springframework.boot:spring-boot-starter-web" )
You can’t perform that action at this time.
0 commit comments