41 lines
694 B
Groovy
41 lines
694 B
Groovy
|
plugins {
|
|||
|
id 'java'
|
|||
|
}
|
|||
|
|
|||
|
group 'com.ljsd'
|
|||
|
version '1.0.0-SNAPSHOT'
|
|||
|
|
|||
|
sourceCompatibility = 1.8
|
|||
|
|
|||
|
repositories {
|
|||
|
mavenLocal()
|
|||
|
mavenCentral()
|
|||
|
}
|
|||
|
|
|||
|
jar {
|
|||
|
baseName = 'bloodyBattle'
|
|||
|
version = '1.0.0'
|
|||
|
manifest {
|
|||
|
attributes 'Main-Class': 'com.ljsd.BattleServerApplication'
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
dependencies {
|
|||
|
compile project(":serverlogic")
|
|||
|
}
|
|||
|
|
|||
|
//依赖编译,然后打包JAR
|
|||
|
task taskJar(type:Jar, dependsOn: compileJava) {
|
|||
|
from 'build/classes/main'
|
|||
|
destinationDir = file('build/libs')
|
|||
|
}
|
|||
|
|
|||
|
//删除lib中的jar
|
|||
|
task clearJars(type:Delete){
|
|||
|
delete 'lib'
|
|||
|
}
|
|||
|
|
|||
|
task copyJars(type: Copy, dependsOn:clearJars) {
|
|||
|
from configurations.runtime
|
|||
|
into 'lib' // 目标位置
|
|||
|
}
|