123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- buildscript {
- ext {
- springBootVersion = '1.5.7.RELEASE'
- dockerVersion = '0.12.0'
- dcokerRegistry = "10.10.100.200:5000"
- }
- repositories {
- mavenLocal()
- maven { url "https://plugins.gradle.org/m2/" }
- maven { url "http://maven.aliyun.com/nexus/content/groups/public/" }
- maven { url 'http://10.10.101.21:8081/artifactory/ext-release-local' }
- jcenter()
- mavenCentral()
- }
- dependencies {
- classpath "org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}"
- classpath "gradle.plugin.com.palantir.gradle.docker:gradle-docker:${dockerVersion}"
- }
- }
- group 'com.uas.platform.oos'
- version '1.0.1-SNAPSHOT'
- apply plugin: "com.palantir.docker"
- apply plugin: 'org.springframework.boot'
- apply from: "$rootDir/gradle/tasks.gradle"
- dependencies {
- compile project(":oos-core")
- compile ("com.google.guava:guava:23.0")
- 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 "mysql:mysql-connector-java:6.0.6"
- compile "org.webjars:webjars-locator"
- compile "org.webjars:jquery:2.1.1"
- compile "org.webjars:angularjs:1.4.3"
- compile "org.webjars:bootstrap:3.2.0"
- testCompile "org.springframework.boot:spring-boot-starter-test"
- }
- jar {
- baseName = project.name
- version = ''
- }
|