2019-03-18 19:49:22 +01:00
|
|
|
repositories {
|
2019-08-08 01:16:44 +02:00
|
|
|
maven { url = "https://jitpack.io" }
|
2020-05-25 15:13:31 +02:00
|
|
|
maven { url = "https://mvn.intellectualsites.com/content/repositories/snapshots" }
|
2019-03-18 19:49:22 +01:00
|
|
|
}
|
2019-08-08 01:16:44 +02:00
|
|
|
def textVersion = "3.0.2"
|
2019-03-18 19:49:22 +01:00
|
|
|
|
2016-02-26 13:55:21 +01:00
|
|
|
dependencies {
|
2019-10-07 17:16:31 +02:00
|
|
|
implementation("org.yaml:snakeyaml:1.25")
|
2019-11-15 19:26:16 +01:00
|
|
|
implementation("com.google.code.gson:gson:2.8.6") {
|
2019-08-08 01:16:44 +02:00
|
|
|
because("Minecraft uses GSON 2.8.0")
|
|
|
|
force = true
|
|
|
|
}
|
2020-02-10 09:03:18 +01:00
|
|
|
implementation("org.projectlombok:lombok:1.18.12")
|
|
|
|
compileOnly("org.projectlombok:lombok:1.18.12")
|
2019-08-08 01:16:44 +02:00
|
|
|
testCompileOnly("org.projectlombok:lombok:1.18.8")
|
|
|
|
annotationProcessor("org.projectlombok:lombok:1.18.8")
|
|
|
|
testAnnotationProcessor("org.projectlombok:lombok:1.18.8")
|
2020-04-14 20:25:00 +02:00
|
|
|
implementation("org.jetbrains.kotlin:kotlin-stdlib:1.3.72")
|
2020-04-14 19:50:27 +02:00
|
|
|
implementation("org.jetbrains:annotations:19.0.0")
|
2020-05-25 15:13:31 +02:00
|
|
|
implementation("org.khelekore:prtree:1.7.0-SNAPSHOT")
|
2016-02-27 06:05:21 +01:00
|
|
|
}
|
2019-03-18 19:49:22 +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 {
|
2019-08-06 21:05:04 +02:00
|
|
|
from("src/main/resources") {
|
|
|
|
include "plugin.properties"
|
2017-03-08 06:51:01 +01:00
|
|
|
expand(
|
|
|
|
version: "${project.parent.version}",
|
|
|
|
name: project.parent.name,
|
2019-01-03 18:32:21 +01:00
|
|
|
commit: "${git.head().abbreviatedId}",
|
|
|
|
date: "${git.head().getDate().format("yy.MM.dd")}",
|
2017-03-08 06:51:01 +01:00
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-09-07 22:46:13 +02:00
|
|
|
//noinspection GroovyAssignabilityCheck
|
2020-04-11 02:39:02 +02:00
|
|
|
jar.archiveFileName = "PlotSquared-${project.parent.version}.jar"
|
2020-04-11 02:39:02 +02:00
|
|
|
jar.destinationDirectory = file("../mvn/com/plotsquared/PlotSquared/" + project.parent.version)
|
2018-12-21 17:26:19 +01:00
|
|
|
task createPom {
|
|
|
|
doLast {
|
|
|
|
pom {
|
|
|
|
project {
|
2020-04-11 02:39:02 +02:00
|
|
|
groupId = rootProject.group
|
|
|
|
artifactId = "PlotSquared"
|
2019-08-08 01:16:44 +02:00
|
|
|
version = project.parent.version
|
2018-12-21 17:26:19 +01:00
|
|
|
}
|
2020-04-11 02:39:02 +02:00
|
|
|
}.writeTo("../mvn/com/plotsquared/PlotSquared/${project.parent.version}/PlotSquared-${project.parent.version}.pom")
|
2018-12-21 17:26:19 +01:00
|
|
|
pom {
|
|
|
|
project {
|
2020-04-11 02:39:02 +02:00
|
|
|
groupId = rootProject.group
|
|
|
|
artifactId = "PlotSquared"
|
2019-08-08 01:16:44 +02:00
|
|
|
version = "latest"
|
2018-12-21 17:26:19 +01:00
|
|
|
}
|
2020-04-11 02:39:02 +02:00
|
|
|
}.writeTo("../mvn/com/plotsquared/PlotSquared/latest/PlotSquared-latest.pom")
|
2020-04-11 02:39:02 +02:00
|
|
|
.writeTo("pom.xml")
|
2018-12-21 17:26:19 +01:00
|
|
|
}
|
2017-03-08 06:51:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
task copyFiles {
|
|
|
|
doLast {
|
|
|
|
copy {
|
2020-04-11 02:39:02 +02:00
|
|
|
from("../mvn/com/plotsquared/PlotSquared/${project.parent.version}/")
|
|
|
|
into("../mvn/com/plotsquared/PlotSquared/latest/")
|
2019-08-06 21:05:04 +02:00
|
|
|
include("*.jar")
|
2020-04-11 02:39:02 +02:00
|
|
|
rename("PlotSquared-${project.parent.version}.jar", "PlotSquared-latest.jar")
|
2017-03-08 06:51:01 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-08-08 01:16:44 +02: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-05-25 15:13:31 +02:00
|
|
|
include(dependency("org.khelekore:prtree:1.7.0-SNAPSHOT"))
|
2019-08-08 01:16:44 +02:00
|
|
|
}
|
2020-04-11 02:19:18 +02:00
|
|
|
relocate('net.kyori.text', 'com.plotsquared.formatting.text')
|
2020-04-18 21:14:44 +02:00
|
|
|
relocate("org.json", "com.plotsquared.json") {
|
|
|
|
exclude "org/json/simple/**"
|
|
|
|
}
|
2019-08-08 01:16:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
shadowJar.doLast {
|
|
|
|
task ->
|
|
|
|
ant.checksum file: task.archivePath
|
|
|
|
}
|
|
|
|
|
|
|
|
build.dependsOn(shadowJar)
|
|
|
|
|
2017-03-08 06:51:01 +01:00
|
|
|
build.finalizedBy(copyFiles)
|
2018-08-10 17:01:10 +02:00
|
|
|
copyFiles.dependsOn(createPom)
|