miduo_server/common/build.gradle

24 lines
374 B
Groovy

plugins {
id 'java'
}
group 'com.ljsd'
version '1.0.0-SNAPSHOT'
sourceCompatibility = 1.8
repositories {
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'
}