2018-12-27 17:54:23 +08:00
|
|
|
plugins {
|
|
|
|
id 'java'
|
|
|
|
}
|
|
|
|
|
|
|
|
group 'com.ljsd'
|
|
|
|
version '1.0.0-SNAPSHOT'
|
|
|
|
|
|
|
|
sourceCompatibility = 1.8
|
|
|
|
|
|
|
|
repositories {
|
2019-01-22 18:55:33 +08:00
|
|
|
mavenLocal()
|
2018-12-27 17:54:23 +08:00
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
testCompile group: 'junit', name: 'junit', version: '4.12'
|
2019-01-07 10:00:52 +08:00
|
|
|
compile("org.springframework.boot:spring-boot-starter-data-mongodb:1.5.9.RELEASE")
|
2018-12-27 17:54:23 +08:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
jar {
|
|
|
|
baseName = 'common'
|
|
|
|
version = '1.0.0'
|
|
|
|
}
|