PlotSquared/Core/build.gradle

97 lines
3.1 KiB
Groovy
Raw Normal View History

2019-03-18 19:49:22 +01:00
repositories {
2019-08-08 01:16:44 +02:00
maven { url = "https://jitpack.io" }
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
dependencies {
implementation("org.yaml:snakeyaml:1.25")
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
}
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")
implementation("org.jetbrains.kotlin:kotlin-stdlib:1.3.72")
implementation("org.jetbrains:annotations:19.0.0")
implementation("org.khelekore:prtree:1.7.0-SNAPSHOT")
2020-07-10 22:12:37 +02:00
compile("com.google.inject:guice:4.2.3")
compile("com.google.inject.extensions:guice-assistedinject:4.2.3")
}
2019-03-18 19:49:22 +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,
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"
jar.destinationDirectory = file("../mvn/com/plotsquared/PlotSquared/" + project.parent.version)
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
}
}.writeTo("../mvn/com/plotsquared/PlotSquared/${project.parent.version}/PlotSquared-${project.parent.version}.pom")
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"
}
}.writeTo("../mvn/com/plotsquared/PlotSquared/latest/PlotSquared-latest.pom")
2020-04-11 02:39:02 +02:00
.writeTo("pom.xml")
}
2017-03-08 06:51:01 +01:00
}
task copyFiles {
doLast {
copy {
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"))
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)