Skip to content

Commit

Permalink
Updated version from 0.8.0-SNAPSHOT to 0.8.0
Browse files Browse the repository at this point in the history
In this commit, we have:
- Updated the project version reference from a snapshot version to an official release version across multiple files
- Adjusted artifact dependencies to point to the correct 0.8.0 version instead of the snapshot
- Updated Maven dependency versions in README.md
- Adjusted version properties in pom.xml for JTE and Thymeleaf examples
- Fixed some minor formatting issues in README.md's XML snippets
  • Loading branch information
tschuehly committed Jun 3, 2024
1 parent 8d6ff22 commit 5120117
Show file tree
Hide file tree
Showing 11 changed files with 44 additions and 43 deletions.
49 changes: 25 additions & 24 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -243,29 +243,30 @@ sourceSets {
<summary>Maven</summary>

```xml

<dependency>
<groupId>de.tschuehly</groupId>
<artifactId>spring-view-component-thymeleaf</artifactId>
<version>0.8.0</version>
</dependency>

<build>
<resources>
<resource>
<directory>src/main/java</directory>
<includes>
<include>**/*.html</include>
</includes>
</resource>
</resources>
<plugins>
<plugin>
<artifactId>maven-resources-plugin</artifactId>5
<version>3.3.0</version>
</plugin>
</plugins>
</build>
<project>
<dependencies>
<dependency>
<groupId>de.tschuehly</groupId>
<artifactId>spring-view-component-thymeleaf</artifactId>
<version>0.8.0</version>
</dependency>
</dependencies>
<build>
<resources>
<resource>
<directory>src/main/java</directory>
<includes>
<include>**/*.html</include>
</includes>
</resource>
</resources>
<plugins>
<plugin>
<artifactId>maven-resources-plugin</artifactId>5
<version>3.3.0</version>
</plugin>
</plugins>
</build>
</project>
```

Expand Down Expand Up @@ -303,7 +304,7 @@ jte{
<dependency>
<groupId>de.tschuehly</groupId>
<artifactId>spring-view-component-jte</artifactId>
<version>${view.component.version}</version>
<version>0.8.0</version>
</dependency>
</dependencies>
<build>
Expand Down
2 changes: 1 addition & 1 deletion core/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ plugins {
}

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

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

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

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.8.0-SNAPSHOT"))
testImplementation(testFixtures("de.tschuehly:spring-view-component-core:0.8.0"))
}

tasks.withType<Test> {
Expand Down
2 changes: 1 addition & 1 deletion 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.8.0-SNAPSHOT</view.component.version>
<view.component.version>0.8.0</view.component.version>
</properties>
<dependencies>
<dependency>
Expand Down
6 changes: 3 additions & 3 deletions examples/kte-example/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ repositories {
}

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

implementation("org.webjars.npm:htmx.org:1.9.11")
Expand All @@ -47,7 +47,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.8.0-SNAPSHOT"))
testImplementation(testFixtures("de.tschuehly:spring-view-component-core:0.8.0"))
}

tasks.withType<KotlinCompile> {
Expand Down
4 changes: 2 additions & 2 deletions examples/thymeleaf-java-example/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -29,14 +29,14 @@ repositories {

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

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.8.0-SNAPSHOT"))
testImplementation(testFixtures("de.tschuehly:spring-view-component-core:0.8.0"))
}

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.8.0-SNAPSHOT</view.component.version>
<view.component.version>0.8.0</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 @@ -18,8 +18,8 @@ repositories {
}

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

implementation("org.webjars.npm:htmx.org:1.9.2")
implementation("org.webjars:webjars-locator:0.47")
Expand All @@ -35,7 +35,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.8.0-SNAPSHOT"))
testImplementation(testFixtures("de.tschuehly:spring-view-component-core:0.8.0"))
}

tasks.withType<KotlinCompile> {
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,7 +13,7 @@ plugins {
}

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

repositories {
Expand All @@ -22,7 +22,7 @@ repositories {
}
dependencies {
api("gg.jte:jte:3.1.12")
api("de.tschuehly:spring-view-component-core:0.8.0-SNAPSHOT")
api("de.tschuehly:spring-view-component-core:0.8.0")

implementation("gg.jte:jte-spring-boot-starter-3:3.1.12")
implementation("org.springframework.boot:spring-boot-starter-web")
Expand Down
4 changes: 2 additions & 2 deletions kte/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.8.0-SNAPSHOT"
version = "0.8.0"
java.sourceCompatibility = JavaVersion.VERSION_17

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

implementation("gg.jte:jte-spring-boot-starter-3:3.1.12")
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.8.0-SNAPSHOT"
version = "0.8.0"
java.sourceCompatibility = JavaVersion.VERSION_17

repositories {
mavenCentral()
}

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

0 comments on commit 5120117

Please sign in to comment.