|
|
@@ -1,8 +1,22 @@
|
|
|
+buildscript {
|
|
|
+ repositories {
|
|
|
+ maven { url "https://plugins.gradle.org/m2/" }
|
|
|
+ maven { url 'http://113.105.74.141:8081/artifactory/libs-release-local' }
|
|
|
+ maven { url "http://maven.aliyun.com/nexus/content/groups/public/" }
|
|
|
+ jcenter()
|
|
|
+ }
|
|
|
+ dependencies {
|
|
|
+ classpath 'com.uas.demo.mesh:spring-boot-docker-plugin:1.0.2'
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
plugins {
|
|
|
id "eclipse"
|
|
|
id "org.springframework.boot" version "1.5.9.RELEASE"
|
|
|
}
|
|
|
|
|
|
+apply plugin: 'com.uas.docker.spring.boot'
|
|
|
+
|
|
|
dependencies {
|
|
|
// Custom Libraries
|
|
|
compile project(":sso-common")
|
|
|
@@ -17,3 +31,8 @@ dependencies {
|
|
|
|
|
|
testCompile('org.springframework.boot:spring-boot-starter-test')
|
|
|
}
|
|
|
+
|
|
|
+customDocker {
|
|
|
+ baseImage '10.10.100.200:5000/alpine-java:8'
|
|
|
+ registry '10.10.100.200:5000'
|
|
|
+}
|