2019-03-18 18:49:22 +00:00
|
|
|
repositories {
|
2019-08-07 23:16:44 +00:00
|
|
|
maven { url = "https://jitpack.io" }
|
2019-03-18 18:49:22 +00:00
|
|
|
}
|
2019-08-07 23:16:44 +00:00
|
|
|
def textVersion = "3.0.2"
|
2019-03-18 18:49:22 +00:00
|
|
|
|
2016-02-26 12:55:21 +00:00
|
|
|
dependencies {
|
2019-10-07 15:16:31 +00:00
|
|
|
implementation("org.yaml:snakeyaml:1.25")
|
2019-11-15 18:26:16 +00:00
|
|
|
implementation("com.google.code.gson:gson:2.8.6") {
|
2019-08-07 23:16:44 +00:00
|
|
|
because("Minecraft uses GSON 2.8.0")
|
|
|
|
force = true
|
|
|
|
}
|
2020-02-10 08:03:18 +00:00
|
|
|
implementation("org.projectlombok:lombok:1.18.12")
|
|
|
|
compileOnly("org.projectlombok:lombok:1.18.12")
|
2019-08-07 23:16:44 +00:00
|
|
|
testCompileOnly("org.projectlombok:lombok:1.18.8")
|
|
|
|
annotationProcessor("org.projectlombok:lombok:1.18.8")
|
|
|
|
testAnnotationProcessor("org.projectlombok:lombok:1.18.8")
|
2019-12-02 07:26:55 +00:00
|
|
|
implementation("org.jetbrains.kotlin:kotlin-stdlib:1.3.61")
|
2020-02-24 17:42:02 +00:00
|
|
|
implementation("org.jetbrains:annotations:18.0.0")
|
2016-02-27 05:05:21 +00:00
|
|
|
}
|
2019-03-18 18:49:22 +00:00
|
|
|
|
2018-11-14 13:19:56 +00:00
|
|
|
sourceCompatibility = 1.8
|
|
|
|
targetCompatibility = 1.8
|
2016-02-27 18:41:49 +00:00
|
|
|
|
2017-03-08 05:51:01 +00:00
|
|
|
processResources {
|
2019-08-06 19:05:04 +00:00
|
|
|
from("src/main/resources") {
|
|
|
|
include "plugin.properties"
|
2017-03-08 05:51:01 +00:00
|
|
|
expand(
|
|
|
|
version: "${project.parent.version}",
|
|
|
|
name: project.parent.name,
|
2019-01-03 17:32:21 +00:00
|
|
|
commit: "${git.head().abbreviatedId}",
|
|
|
|
date: "${git.head().getDate().format("yy.MM.dd")}",
|
2017-03-08 05:51:01 +00:00
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-09-07 20:46:13 +00:00
|
|
|
//noinspection GroovyAssignabilityCheck
|
2020-01-03 19:10:16 +00:00
|
|
|
jar.archiveFileName = "PlotSquared-CoreAPI-${project.parent.version}.jar"
|
2020-04-11 00:19:18 +00:00
|
|
|
jar.destinationDirectory = file("../mvn/com/plotsquared/PlotSquared-CoreAPI/" + project.parent.version)
|
2018-12-21 16:26:19 +00:00
|
|
|
task createPom {
|
|
|
|
doLast {
|
|
|
|
pom {
|
|
|
|
project {
|
2020-04-11 00:19:18 +00:00
|
|
|
groupId = "com.plotsquared"
|
2020-01-03 19:10:16 +00:00
|
|
|
artifactId = "PlotSquared-CoreAPI"
|
2019-08-07 23:16:44 +00:00
|
|
|
version = project.parent.version
|
2018-12-21 16:26:19 +00:00
|
|
|
}
|
2020-04-11 00:19:18 +00:00
|
|
|
}.writeTo("../mvn/com/plotsquared/PlotSquared-CoreAPI/${project.parent.version}/PlotSquared-CoreAPI-${project.parent.version}.pom")
|
2018-12-21 16:26:19 +00:00
|
|
|
pom {
|
|
|
|
project {
|
2020-04-11 00:19:18 +00:00
|
|
|
groupId = "com.plotsquared"
|
2020-01-03 19:10:16 +00:00
|
|
|
artifactId = "PlotSquared-CoreAPI"
|
2019-08-07 23:16:44 +00:00
|
|
|
version = "latest"
|
2018-12-21 16:26:19 +00:00
|
|
|
}
|
2020-04-11 00:19:18 +00:00
|
|
|
}.writeTo("../mvn/com/plotsquared/PlotSquared-CoreAPI/latest/PlotSquared-CoreAPI-latest.pom")
|
2018-12-21 16:26:19 +00:00
|
|
|
}
|
2017-03-08 05:51:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
task copyFiles {
|
|
|
|
doLast {
|
|
|
|
copy {
|
2020-04-11 00:19:18 +00:00
|
|
|
from("../mvn/com/plotsquared/PlotSquared-CoreAPI/${project.parent.version}/")
|
|
|
|
into("../mvn/com/plotsquared/PlotSquared-CoreAPI/latest/")
|
2019-08-06 19:05:04 +00:00
|
|
|
include("*.jar")
|
2020-01-03 19:10:16 +00:00
|
|
|
rename("PlotSquared-CoreAPI-${project.parent.version}.jar", "PlotSquared-CoreAPI-latest.jar")
|
2017-03-08 05:51:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-08-07 23:16:44 +00:00
|
|
|
shadowJar {
|
|
|
|
dependencies {
|
|
|
|
include(dependency("net.kyori:text-api:3.0.2"))
|
|
|
|
include(dependency("net.kyori:text-serializer-gson:3.0.2"))
|
|
|
|
include(dependency("net.kyori:text-serializer-legacy:3.0.2"))
|
|
|
|
include(dependency("net.kyori:text-serializer-plain:3.0.2"))
|
|
|
|
}
|
2020-04-11 00:19:18 +00:00
|
|
|
relocate('net.kyori.text', 'com.plotsquared.formatting.text')
|
2019-08-07 23:16:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
shadowJar.doLast {
|
|
|
|
task ->
|
|
|
|
ant.checksum file: task.archivePath
|
|
|
|
}
|
|
|
|
|
|
|
|
build.dependsOn(shadowJar)
|
|
|
|
|
2017-03-08 05:51:01 +00:00
|
|
|
build.finalizedBy(copyFiles)
|
2018-08-10 15:01:10 +00:00
|
|
|
copyFiles.dependsOn(createPom)
|