25 lines
447 B
Groovy
25 lines
447 B
Groovy
plugins {
|
|
id 'java'
|
|
}
|
|
|
|
group 'com.ljsd'
|
|
version '1.0.0-SNAPSHOT'
|
|
|
|
sourceCompatibility = 1.8
|
|
|
|
repositories {
|
|
maven { url "http://maven.aliyun.com/nexus/content/groups/public/" }
|
|
mavenLocal()
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
testCompile group: 'junit', name: 'junit', version: '4.12'
|
|
compile("org.springframework.boot:spring-boot-starter-data-mongodb:1.5.9.RELEASE")
|
|
|
|
}
|
|
|
|
jar {
|
|
baseName = 'common'
|
|
version = '1.0.0'
|
|
} |