2016-02-26 13:55:21 +01:00
|
|
|
dependencies {
|
2016-02-29 17:15:51 +01:00
|
|
|
testCompile 'junit:junit:4.12'
|
2018-12-21 17:26:19 +01:00
|
|
|
compile 'org.yaml:snakeyaml:1.23'
|
|
|
|
compile 'com.google.code.gson:gson:2.8.5'
|
2018-12-21 14:38:28 +01:00
|
|
|
compileOnly 'org.projectlombok:lombok:1.18.4'
|
2016-02-27 06:05:21 +01:00
|
|
|
}
|
2018-11-14 14:19:56 +01:00
|
|
|
sourceCompatibility = 1.8
|
|
|
|
targetCompatibility = 1.8
|
2016-02-27 19:41:49 +01:00
|
|
|
|
2017-03-08 06:51:01 +01:00
|
|
|
|
|
|
|
processResources {
|
|
|
|
from('src/main/resources') {
|
2017-08-09 07:04:59 +02:00
|
|
|
include 'plugin.properties'
|
2017-03-08 06:51:01 +01:00
|
|
|
expand(
|
|
|
|
version: "${project.parent.version}",
|
|
|
|
name: project.parent.name,
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-12-25 18:30:42 +01:00
|
|
|
jar.archiveName = "Plotsquared-Api-${project.parent.version}.jar"
|
|
|
|
jar.destinationDir = file '../mvn/com/github/intellectualsites/plotsquared/Plotsquared-Api/' + project.parent.version
|
2018-12-21 17:26:19 +01:00
|
|
|
task createPom {
|
|
|
|
doLast {
|
|
|
|
pom {
|
|
|
|
project {
|
2018-12-25 18:27:07 +01:00
|
|
|
groupId 'com.github.intellectualsites.plotsquared'
|
|
|
|
artifactId 'Plotsquared'
|
2018-12-21 17:26:19 +01:00
|
|
|
version project.parent.version
|
|
|
|
}
|
2018-12-25 18:27:07 +01:00
|
|
|
}.writeTo("../mvn/com/github/intellectualsites/plotsquared/Plotsquared-Api/${project.parent.version}/Plotsquared-Api-${project.parent.version}.pom")
|
2018-12-21 17:26:19 +01:00
|
|
|
pom {
|
|
|
|
project {
|
2018-12-25 18:27:07 +01:00
|
|
|
groupId 'com.github.intellectualsites.plotsquared'
|
|
|
|
artifactId 'Plotsquared'
|
2018-12-21 17:26:19 +01:00
|
|
|
version 'latest'
|
|
|
|
}
|
2018-12-25 18:28:07 +01:00
|
|
|
}.writeTo("../mvn/com/github/intellectualsites/plotsquared/Plotsquared-Api/latest/Plotsquared-Api-latest.pom")
|
2018-12-21 17:26:19 +01:00
|
|
|
}
|
2017-03-08 06:51:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
task copyFiles {
|
|
|
|
doLast {
|
|
|
|
copy {
|
2018-12-25 18:30:42 +01:00
|
|
|
from "../mvn/com/github/intellectualsites/plotsquared/Plotsquared-Api/${project.parent.version}/"
|
|
|
|
into '../mvn/com/github/intellectualsites/plotsquared/Plotsquared-Api/latest/'
|
2017-03-08 06:51:01 +01:00
|
|
|
include('*.jar')
|
2018-12-25 18:30:42 +01:00
|
|
|
rename("Plotsquared-Api-${project.parent.version}.jar", 'Plotsquared-Api-latest.jar')
|
2017-03-08 06:51:01 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
build.finalizedBy(copyFiles)
|
2018-08-10 17:01:10 +02:00
|
|
|
copyFiles.dependsOn(createPom)
|