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" ) }