update Vaadin to 25.2.6 (#95)
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 3s

Co-authored-by: Thomas Peetz <thomas.peetz@cimt-ag.de>
Reviewed-on: #95
This commit was merged in pull request #95.
This commit is contained in:
2026-08-25 14:15:18 +00:00
parent bda453a92a
commit 57b942a9ca
114 changed files with 8490 additions and 177 deletions
+8 -16
View File
@@ -2,7 +2,6 @@ plugins {
id 'java'
id 'application'
id 'maven-publish'
//id "com.google.cloud.artifactregistry.gradle-plugin" version "2.2.0"
id 'jvm-test-suite'
id 'jacoco'
id 'test-report-aggregation'
@@ -11,13 +10,11 @@ plugins {
alias(libs.plugins.spring.dependencies)
alias(libs.plugins.vaadin)
alias(libs.plugins.lombok)
//id 'com.github.ksoichiro.build.info' version '0.2.0'
//id 'com.pasam.gradle.buildinfo' version '0.1.3'
id 'com.gorylenko.gradle-git-properties' version '4.0.1'
alias(libs.plugins.gradle.git.properties)
}
repositories {
maven { setUrl("https://nexus.thpeetz.de/repository/maven-central") }
maven { setUrl("https://nexus.thpeetz.de/repository/maven-public") }
mavenCentral()
maven { setUrl("https://maven.vaadin.com/vaadin-prereleases") }
maven { setUrl("https://repo.spring.io/milestone") }
@@ -25,7 +22,7 @@ repositories {
}
java {
sourceCompatibility = JavaVersion.VERSION_17
sourceCompatibility = JavaVersion.VERSION_21
}
configurations {
@@ -38,23 +35,23 @@ configurations {
dependencies {
implementation 'com.vaadin:vaadin-core'
implementation 'com.vaadin:vaadin-spring-boot-starter'
implementation 'org.springframework.boot:spring-boot-starter-actuator'
implementation 'org.springframework.boot:spring-boot-starter-artemis'
implementation 'org.springframework.boot:spring-boot-starter-security'
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
implementation 'org.springframework.boot:spring-boot-starter-security'
implementation 'org.springframework.boot:spring-boot-starter-validation'
implementation 'org.apache.camel.springboot:camel-spring-boot-starter'
implementation 'org.springframework.security:spring-security-oauth2-jose'
implementation 'org.springframework.security:spring-security-oauth2-resource-server'
implementation 'org.apache.camel.springboot:camel-jms-starter'
implementation 'org.apache.camel.springboot:camel-metrics-starter'
implementation 'org.apache.camel.springboot:camel-micrometer-starter'
implementation 'org.apache.camel.springboot:camel-spring-boot-starter'
implementation 'org.apache.activemq:artemis-jakarta-client'
//implementation libs.artemis
implementation 'org.springframework.boot:spring-boot-starter-actuator'
developmentOnly 'org.springframework.boot:spring-boot-devtools'
implementation 'io.micrometer:micrometer-registry-prometheus'
implementation libs.jolokia.core
implementation libs.prometheus.collector
implementation 'org.springframework.security:spring-security-oauth2-jose'
implementation 'org.springframework.security:spring-security-oauth2-resource-server'
implementation 'com.h2database:h2'
implementation libs.hsqldb
implementation 'org.postgresql:postgresql'
@@ -149,7 +146,6 @@ testing {
}
}
test(JvmTestSuite) {
testType = TestSuiteType.UNIT_TEST
targets {
all {
testTask.configure {
@@ -165,7 +161,6 @@ testing {
}
}
integrationTest(JvmTestSuite) {
testType = "view-test"
targets {
all {
testTask.configure {
@@ -197,13 +192,10 @@ jacocoTestReport {
reporting {
reports {
testAggregateTestReport(AggregateTestReport) {
testType = TestSuiteType.UNIT_TEST
}
integrationTestAggregateTestReport(AggregateTestReport) {
testType = "view-test"
}
integrationTestCodeCoverageReport(JacocoCoverageReport) {
testType = "view-test"
}
}
}