123456789101112131415161718192021222324252627282930313233343536373839404142 |
- plugins {
- id "java"
- id "idea"
- id "maven"
- id "io.spring.dependency-management" version "1.0.7.RELEASE"
- id "org.springframework.boot" version "2.1.4.RELEASE"
- }
- group 'com.usoftchina.uas'
- version '1.0.0-SNAPSHOT'
- sourceCompatibility = 1.8
- targetCompatibility = 1.8
- [compileJava,compileTestJava,javadoc]*.options*.encoding = 'UTF-8'
- ext {
- springBootVersion = '2.1.4.RELEASE'
- }
- repositories {
- mavenLocal()
- mavenCentral()
- maven { url "http://repo.spring.io/libs-milestone" }
- maven { url "http://maven.aliyun.com/nexus/content/groups/public/" }
- maven { url "https://oss.sonatype.org/content/repositories/snapshots" }
- maven { url "http://maven.ubtob.com/artifactory/libs-snapshot-local" }
- }
- dependencyManagement {
- imports {
- mavenBom "org.springframework.boot:spring-boot-dependencies:${springBootVersion}"
- }
- }
- dependencies {
- compile 'org.springframework.boot:spring-boot-starter-web'
- compile 'org.springframework.boot:spring-boot-starter-jdbc'
- compile 'com.usoftchina.uu:open-sdk:1.0.0-SNAPSHOT'
- compile 'com.oracle:ojdbc6:11.2.0'
- testCompile 'org.springframework.boot:spring-boot-starter-test'
- }
|