| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- 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'
- apply from: "$projectDir/gradle/publish.gradle"
- dependencies {
- // Custom Libraries
- compile project(":sso-common")
- compile project(path: ":sso-server", configuration: "persist") // Project Lib
- compile("org.springframework.boot:spring-boot-starter-web")
- compile("org.springframework.boot:spring-boot-starter-thymeleaf")
- compile("org.springframework.boot:spring-boot-starter-data-jpa")
- compile("org.springframework.boot:spring-boot-starter-actuator")
- compile("net.sourceforge.nekohtml:nekohtml:1.9.15")
- compile("mysql:mysql-connector-java:5.1.41")
- compile("com.alibaba:druid:1.1.6")
- testCompile('org.springframework.boot:spring-boot-starter-test')
- }
- customDocker {
- baseImage '10.10.100.200:5000/alpine-java:8'
- registry '10.10.100.200:5000'
- }
|