add kontor-data to extract data model
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 10s

This commit is contained in:
2026-08-10 22:49:46 +02:00
parent a4975928ae
commit 567e254840
87 changed files with 3028 additions and 0 deletions
+18
View File
@@ -2,6 +2,7 @@ plugins {
id 'java'
id 'org.springframework.boot' version '4.0.7'
id 'io.spring.dependency-management' version '1.1.7'
alias(libs.plugins.lombok)
}
group = 'de.thpeetz.kontor'
@@ -15,14 +16,31 @@ java {
repositories {
mavenCentral()
maven { setUrl("https://repo.spring.io/milestone") }
}
dependencyManagement {
imports {
mavenBom libs.camel.bom.get().toString()
}
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-actuator'
implementation 'org.springframework.boot:spring-boot-starter-artemis'
implementation 'org.springframework.boot:spring-boot-starter-webmvc'
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
implementation 'org.apache.camel.springboot:camel-spring-boot-starter:4.20.0'
implementation 'org.apache.camel.springboot:camel-jms-starter'
implementation 'io.micrometer:micrometer-registry-prometheus'
implementation 'org.apache.activemq:artemis-jakarta-client'
implementation 'org.postgresql:postgresql'
implementation libs.jackson
implementation libs.gson
runtimeOnly 'io.micrometer:micrometer-registry-prometheus'
compileOnly 'org.projectlombok:lombok'
annotationProcessor 'org.projectlombok:lombok'
testImplementation 'org.apache.camel:camel-test-spring-junit5'
testImplementation 'org.springframework.boot:spring-boot-starter-artemis-test'
testImplementation 'org.springframework.boot:spring-boot-starter-webmvc-test'
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'