first commit
This commit is contained in:
parent
670000dc4b
commit
0998142c2c
|
@ -0,0 +1,3 @@
|
|||
FROM bellsoft/liberica-openjre-alpine:17
|
||||
ADD ./build/libs/control-center-management-*.jar control-center-management.jar
|
||||
ENTRYPOINT [ "java", "-jar", "/control-center-management.jar" ]
|
10
build.gradle
10
build.gradle
|
@ -16,10 +16,12 @@ repositories {
|
|||
}
|
||||
|
||||
dependencies {
|
||||
implementation 'org.springframework.boot:spring-boot-starter-data-mongodb-reactive'
|
||||
implementation 'org.springframework.boot:spring-boot-starter-web'
|
||||
testImplementation 'org.springframework.boot:spring-boot-starter-test'
|
||||
testImplementation 'io.projectreactor:reactor-test'
|
||||
implementation("org.springframework.boot:spring-boot-starter-web") {
|
||||
exclude group: "org.springframework.boot", module: "spring-boot-starter-tomcat"
|
||||
}
|
||||
implementation("org.springframework.boot:spring-boot-starter-undertow")
|
||||
implementation("org.springframework.boot:spring-boot-starter-data-mongodb")
|
||||
testImplementation ("org.springframework.boot:spring-boot-starter-test")
|
||||
}
|
||||
|
||||
tasks.named('test') {
|
||||
|
|
Loading…
Reference in New Issue