Skip to content

Commit

Permalink
Update Thymeleaf and use dependencies that work with it
Browse files Browse the repository at this point in the history
  • Loading branch information
ultraq committed Sep 16, 2023
1 parent 78e6c2c commit b0c608c
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 8 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Expand Up @@ -2,6 +2,12 @@
Changelog
=========

### 3.3.0

- Upgrade Groovy to 4.0.14
- Upgrade Thymeleaf to 3.1.2.RELEASE


### 3.2.1

- Upgrade Groovy to 4.0.10
Expand All @@ -10,6 +16,7 @@ Changelog
- Updated [thymeleaf-expression-processor](https://github.com/ultraq/thymeleaf-expression-processor),
which also contains GraalVM native-image metadata


### 3.2.0

- Remove old log warning about `layout:fragment` in the `<head>` section
Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Expand Up @@ -15,10 +15,10 @@
*/

allprojects {
version = '3.2.1'
version = '3.3.0-SNAPSHOT'

ext {
groovyVersion = '4.0.14'
thymeleafVersion = '3.0.15.RELEASE'
thymeleafVersion = '3.1.2.RELEASE'
}
}
2 changes: 1 addition & 1 deletion thymeleaf-layout-dialect-docs/getting-started.md
Expand Up @@ -28,7 +28,7 @@ co-ordinates:

- GroupId: `nz.net.ultraq.thymeleaf`
- ArtifactId: `thymeleaf-layout-dialect`
- Version: `3.2.1`
- Version: `3.3.0`

Check the [project releases](https://github.com/ultraq/thymeleaf-layout-dialect/releases)
for a list of available versions. Each release page also includes a
Expand Down
10 changes: 5 additions & 5 deletions thymeleaf-layout-dialect/build.gradle
Expand Up @@ -32,19 +32,19 @@ year = '2012'
dependencies {
api "org.apache.groovy:groovy:${groovyVersion}"
implementation 'nz.net.ultraq.groovy:groovy-extensions:2.1.0'
implementation 'nz.net.ultraq.thymeleaf:thymeleaf-expression-processor:3.1.1'
implementation 'nz.net.ultraq.thymeleaf:thymeleaf-expression-processor:3.2.0-SNAPSHOT'
implementation "org.thymeleaf:thymeleaf:${thymeleafVersion}"
implementation 'org.slf4j:slf4j-api:1.7.36'
implementation 'org.slf4j:slf4j-api:2.0.9'

codenarc 'org.codenarc:CodeNarc:3.3.0-groovy-4.0'
testImplementation 'net.bytebuddy:byte-buddy:1.14.7'
testImplementation 'nz.net.ultraq.thymeleaf:thymeleaf-testing-junit:5.1.0'
testImplementation 'nz.net.ultraq.thymeleaf:thymeleaf-testing-junit:5.2.0-SNAPSHOT'
testImplementation 'org.objenesis:objenesis:3.3'
testImplementation 'org.reflections:reflections:0.10.2'
testImplementation 'org.spockframework:spock-core:2.3-groovy-4.0'
testImplementation 'org.thymeleaf:thymeleaf-testing:3.0.4.RELEASE'
testImplementation "org.thymeleaf.testing:thymeleaf-testing:${thymeleafVersion}"
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
testRuntimeOnly 'org.slf4j:slf4j-simple:1.7.36'
testRuntimeOnly 'org.slf4j:slf4j-simple:2.0.9'
}

java {
Expand Down

0 comments on commit b0c608c

Please sign in to comment.