25 lines
361 B
Groovy
25 lines
361 B
Groovy
|
plugins {
|
||
|
id 'java'
|
||
|
}
|
||
|
|
||
|
group 'com.ljsd'
|
||
|
version '1.0.0-SNAPSHOT'
|
||
|
|
||
|
sourceCompatibility = 1.8
|
||
|
|
||
|
repositories {
|
||
|
mavenCentral()
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
testCompile group: 'junit', name: 'junit', version: '4.12'
|
||
|
|
||
|
}
|
||
|
|
||
|
jar {
|
||
|
baseName = 'common'
|
||
|
version = '1.0.0'
|
||
|
manifest {
|
||
|
attributes 'Main-Class': 'com.ljsd.jieling.CommonApplication'
|
||
|
}
|
||
|
}
|