You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
629 B
21 lines
629 B
apply plugin: 'war'
|
|
apply plugin: 'com.google.cloud.tools.jib'
|
|
|
|
apply from: "build-common.gradle"
|
|
|
|
dependencies {
|
|
implementation("org.springframework.boot:spring-boot-starter-web"){
|
|
exclude group: "org.springframework.boot", module: "spring-boot-starter-tomcat"
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation(
|
|
"jakarta.servlet:jakarta.servlet-api",
|
|
"org.springframework.boot:spring-boot-starter-web",
|
|
"org.springframework.boot:spring-boot-starter-security",
|
|
"org.springframework.boot:spring-boot-starter-jdbc",
|
|
"org.springframework.security:spring-security-oauth2-authorization-server:0.4.5",
|
|
"com.h2database:h2"
|
|
)
|
|
}
|
|
|