Skip to content

Commit

Permalink
update jreleaser
Browse files Browse the repository at this point in the history
  • Loading branch information
tschuehly committed Jul 1, 2024
1 parent 8ec8ac0 commit 718b476
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ jobs:
./gradlew kte-example:test
publish:
needs: [build, test-jte, test-kte, test-thymeleaf-kotlin, test-thymeleaf-java]
if: github.ref_type == 'tag' || contains(github.ref_name, 'SNAPSHOT')
if: github.ref_type == 'tag' || github.ref_name == 'dev'
runs-on: ubuntu-latest
steps:
- name: checkout
Expand Down
2 changes: 1 addition & 1 deletion core/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ plugins {
kotlin("plugin.spring") version "1.9.23"

id("maven-publish")
id("org.jreleaser") version "1.11.0"
id("org.jreleaser") version "1.13.0"
id("signing")
id("java-test-fixtures")
}
Expand Down
2 changes: 1 addition & 1 deletion jte/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ plugins {
kotlin("plugin.spring") version "1.9.23"

id("maven-publish")
id("org.jreleaser") version "1.11.0"
id("org.jreleaser") version "1.13.0"
id("signing")
}

Expand Down
2 changes: 1 addition & 1 deletion kte/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ plugins {
kotlin("plugin.spring") version "1.9.23"

id("maven-publish")
id("org.jreleaser") version "1.11.0"
id("org.jreleaser") version "1.13.0"
id("signing")
}

Expand Down
2 changes: 1 addition & 1 deletion thymeleaf/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ plugins {
kotlin("plugin.spring") version "1.9.23"

id("maven-publish")
id("org.jreleaser") version "1.5.1"
id("org.jreleaser") version "1.13.0"
id("signing")
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ package de.tschuehly.spring.viewcomponent.thymeleaf
import de.tschuehly.spring.viewcomponent.core.IViewContext
import org.slf4j.LoggerFactory
import org.springframework.context.ApplicationContext
import org.springframework.validation.support.BindingAwareModelMap
import org.springframework.web.context.request.RequestContextHolder
import org.springframework.web.context.request.ServletRequestAttributes
import org.springframework.web.util.ContentCachingResponseWrapper
Expand All @@ -16,6 +17,7 @@ import org.thymeleaf.processor.element.IElementTagStructureHandler
import org.thymeleaf.spring6.view.ThymeleafViewResolver
import org.thymeleaf.templatemode.TemplateMode
import java.nio.charset.StandardCharsets
import javax.swing.UIManager.put


class ThymeleafViewComponentTagProcessor(dialectPrefix: String, private val applicationContext: ApplicationContext) :
Expand Down

0 comments on commit 718b476

Please sign in to comment.