apply plugin: 'org.springframework.boot' apply plugin: 'com.palantir.docker' dependencies { compile "$grpcSpringBoot" compile "$mysqlConnector" compile project(':services:mobile-grpc-service') compile project(':services:account-service') compile project(':services:app-service') compile project(':services:home-service') compile project(':services:message-service') compile 'org.springframework.boot:spring-boot-starter-data-redis' testCompile 'org.springframework.boot:spring-boot-starter-test' } docker { dockerfile "${projectDir}/src/main/docker/Dockerfile" name "${dockerRegistry}/${dockerGroup}/${project.name}:${project.version}" files "${buildDir}/libs/${project.name}-${project.version}.jar" }.dependsOn build