PlotSquared/Core/build.gradle

58 lines
1.9 KiB
Groovy
Raw Normal View History

import org.ajoberstar.grgit.Grgit
dependencies {
testCompile 'junit:junit:4.12'
compile 'org.yaml:snakeyaml:1.23'
compile 'com.google.code.gson:gson:2.8.5'
compileOnly 'org.projectlombok:lombok:1.18.4'
}
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') {
include 'plugin.properties'
2017-03-08 06:51:01 +01:00
expand(
version: "${project.parent.version}",
name: project.parent.name,
commit: "${git.head().abbreviatedId}",
date: "${git.head().getDate().format("yy.MM.dd")}",
2017-03-08 06:51:01 +01:00
)
}
}
jar.archiveName = "Plotsquared-Api-${project.parent.version}.jar"
jar.destinationDir = file '../mvn/com/github/intellectualsites/plotsquared/Plotsquared-Api/' + project.parent.version
task createPom {
doLast {
pom {
project {
2018-12-25 18:27:07 +01:00
groupId 'com.github.intellectualsites.plotsquared'
artifactId 'Plotsquared'
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")
pom {
project {
2018-12-25 18:27:07 +01:00
groupId 'com.github.intellectualsites.plotsquared'
artifactId 'Plotsquared'
version 'latest'
}
2018-12-25 18:28:07 +01:00
}.writeTo("../mvn/com/github/intellectualsites/plotsquared/Plotsquared-Api/latest/Plotsquared-Api-latest.pom")
}
2017-03-08 06:51:01 +01:00
}
task copyFiles {
doLast {
copy {
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')
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)