PlotSquared/Core/build.gradle

53 lines
1.5 KiB
Groovy
Raw Normal View History

dependencies {
testCompile 'junit:junit:4.12'
compile 'org.yaml:snakeyaml:1.16'
compile 'com.google.code.gson:gson:2.2.4'
}
2016-02-27 19:41:49 +01:00
sourceCompatibility = 1.7
targetCompatibility = 1.7
2017-03-08 06:51:01 +01:00
processResources {
from('src/main/resources') {
include 'plugin.properties'
2017-03-08 06:51:01 +01:00
expand(
version: "${project.parent.version}",
name: project.parent.name,
)
}
}
2018-08-10 17:01:10 +02:00
jar.archiveName = "plotsquared-api-${project.parent.version}.jar"
2017-03-08 06:51:01 +01:00
jar.destinationDir = file '../mvn/com/plotsquared/plotsquared-api/' + project.parent.version
task createPom << {
pom {
project {
groupId 'com.plotsquared'
artifactId 'plotsquared-api'
version project.parent.version
}
}.writeTo("../mvn/com/plotsquared/plotsquared-api/${project.parent.version}/plotsquared-api-${project.parent.version}.pom")
pom {
project {
groupId 'com.plotsquared'
artifactId 'plotsquared-api'
version 'latest'
}
}.writeTo("../mvn/com/plotsquared/plotsquared-api/latest/plotsquared-api-latest.pom")
}
task copyFiles {
doLast {
copy {
from "../mvn/com/plotsquared/plotsquared-api/${project.parent.version}/"
into '../mvn/com/plotsquared/plotsquared-api/latest/'
include('*.jar')
2018-08-10 17:01:10 +02: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)