2016-04-02 06:06:24 +02:00
|
|
|
dependencies {
|
|
|
|
testCompile 'junit:junit:4.12'
|
|
|
|
compile 'org.yaml:snakeyaml:1.16'
|
|
|
|
compile 'com.google.code.gson:gson:2.2.4'
|
2016-04-26 21:51:22 +02:00
|
|
|
compile 'net.fabiozumbi12:redprotect:1.9.6'
|
2016-04-02 06:06:24 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
sourceCompatibility = 1.7
|
|
|
|
targetCompatibility = 1.7
|
|
|
|
|
2016-08-14 02:26:51 +02:00
|
|
|
processResources {
|
|
|
|
from('src/main/resources') {
|
|
|
|
include 'fawe.properties'
|
|
|
|
expand(
|
|
|
|
version: "${project.parent.version}",
|
|
|
|
name: project.parent.name,
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-04-14 19:27:50 +02:00
|
|
|
jar.archiveName="FastAsyncWorldEdit-API.jar"
|
2016-04-02 06:06:24 +02:00
|
|
|
jar.destinationDir = file '../target'
|