@@ -3,17 +3,12 @@ plugins {
33 id ' application'
44 id ' org.springframework.boot' version ' 3.4.4'
55 id ' io.spring.dependency-management' version ' 1.1.6'
6- id ' com.google.cloud.tools.jib' version ' 3.4.4'
76}
87
98mainClassName = ' com.unblu.middleware.test.App'
109group ' com.unblu'
1110version ' 1.0.0-SNAPSHOT'
1211
13- wrapper {
14- gradleVersion = ' 8.13'
15- }
16-
1712java {
1813 toolchain {
1914 languageVersion = JavaLanguageVersion . of(21 )
@@ -30,51 +25,9 @@ wrapper {
3025}
3126
3227dependencies {
33- implementation ' org.springframework.boot:spring-boot-starter-actuator'
3428 implementation ' org.springframework.boot:spring-boot-starter-webflux'
35- implementation ' org.springframework:spring-messaging '
36- implementation ' io.micrometer:context-propagation '
29+ implementation ' com.unblu.middleware:unblu-middleware-lib:1.5.5 '
30+ implementation ' com.unblu.openapi:jersey3-client-v4:8.24.0 '
3731 implementation ' org.projectlombok:lombok:1.18.34'
38- implementation ' com.google.guava:guava:32.1.2-jre'
39- implementation ' com.unblu.middleware:unblu-middleware-lib:1.5.1'
40-
41- annotationProcessor " org.springframework.boot:spring-boot-configuration-processor"
42-
43- implementation ' net.logstash.logback:logstash-logback-encoder:7.4'
44-
45- implementation ' com.unblu.openapi:jersey3-client-v4:8.18.0'
46-
47- compileOnly ' org.projectlombok:lombok:1.18.34'
4832 annotationProcessor ' org.projectlombok:lombok:1.18.34'
49-
50- // various
51- implementation ' commons-codec:commons-codec'
52- implementation ' io.projectreactor.addons:reactor-extra'
53-
54- // (unit) testing
55- testImplementation ' org.springframework.boot:spring-boot-starter-test'
56- testImplementation ' io.projectreactor:reactor-test'
57-
58- testImplementation ' org.junit.jupiter:junit-jupiter-api'
59- testRuntimeOnly ' org.junit.jupiter:junit-jupiter-engine'
60- testAnnotationProcessor " org.projectlombok:lombok:1.18.34"
61- }
62-
63- test {
64- // use this to see the output of tests (e.g. Spring dependency problems)
65- // testLogging.showStandardStreams = true
66- }
67-
68- tasks. named(' test' ) {
69- useJUnitPlatform()
7033}
71-
72- tasks. named(' bootRun' ) {
73- if (project. hasProperty(' spring.profiles.active' )) {
74- systemProperties = [' spring.profiles.active' : project. getProperty(' spring.profiles.active' )]
75- } else {
76- systemProperties = [' spring.profiles.active' : ' dev' ] // Set default to 'dev'
77- }
78- }
79-
80-
0 commit comments