diff --git a/README.md b/README.md
index 9b309cc..b75b6b7 100644
--- a/README.md
+++ b/README.md
@@ -227,7 +227,7 @@ spring.view-component.local-development=true
Gradle
```kotlin
-implementation("de.tschuehly:spring-view-component-thymeleaf:0.8.1")
+implementation("de.tschuehly:spring-view-component-thymeleaf:0.8.2")
sourceSets {
main {
resources {
@@ -249,7 +249,7 @@ sourceSets {
de.tschuehly
spring-view-component-thymeleaf
- 0.8.1
+ 0.8.2
@@ -286,7 +286,7 @@ plugins {
id("gg.jte.gradle") version("3.1.12")
}
-implementation("de.tschuehly:spring-view-component-jte:0.8.1")
+implementation("de.tschuehly:spring-view-component-jte:0.8.2")
jte{
generate()
@@ -305,7 +305,7 @@ jte{
de.tschuehly
spring-view-component-jte
- 0.8.1
+ 0.8.2
@@ -343,7 +343,7 @@ jte{
Gradle
```kotlin
-implementation("de.tschuehly:spring-view-component-kte:0.8.1")
+implementation("de.tschuehly:spring-view-component-kte:0.8.2")
jte{
generate()
sourceDirectory = Path("src/main/kotlin")
diff --git a/core/build.gradle.kts b/core/build.gradle.kts
index 15b94c1..d2faa96 100644
--- a/core/build.gradle.kts
+++ b/core/build.gradle.kts
@@ -14,7 +14,7 @@ plugins {
}
group = "de.tschuehly"
-version = "0.8.1"
+version = "0.8.2"
java.sourceCompatibility = JavaVersion.VERSION_17
repositories {
diff --git a/core/src/testFixtures/kotlin/de/tschuehly/spring/viewcomponent/core/IntegrationTestBase.kt b/core/src/testFixtures/kotlin/de/tschuehly/spring/viewcomponent/core/IntegrationTestBase.kt
index f49f1da..46e240e 100644
--- a/core/src/testFixtures/kotlin/de/tschuehly/spring/viewcomponent/core/IntegrationTestBase.kt
+++ b/core/src/testFixtures/kotlin/de/tschuehly/spring/viewcomponent/core/IntegrationTestBase.kt
@@ -8,9 +8,11 @@ import org.springframework.boot.test.web.client.TestRestTemplate
import org.springframework.http.HttpMethod
import org.springframework.http.HttpStatus
import org.springframework.http.ResponseEntity
+
abstract class IntegrationTestBase {
@Autowired
lateinit var testRestTemplate: TestRestTemplate
+
@Test
fun testIndexComponent() {
val expectedHtml =
@@ -37,6 +39,9 @@ abstract class IntegrationTestBase {
This is the SimpleViewComponent
Hello World
+
+
+
""".trimIndent()
assertEndpointReturns("/simple", expectedHtml)
@@ -45,23 +50,27 @@ abstract class IntegrationTestBase {
@Test
fun testLayoutComponent() {
//language=html
- val expectedHtml =
- """
+ val expectedHtml = """
This is the SimpleViewComponent
-
Hello World
-
+ Hello World
+
+
+
+
+