PlotSquared/Core/build.gradle

90 lines
3.0 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" }
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 {
2019-08-08 01:16:44 +02:00
implementation("org.yaml:snakeyaml:1.23")
2019-09-04 03:04:51 +02:00
implementation("com.google.code.gson:gson:2.8.0") {
2019-08-08 01:16:44 +02:00
because("Minecraft uses GSON 2.8.0")
force = true
}
implementation("org.projectlombok:lombok:1.18.8")
compileOnly("org.projectlombok:lombok:1.18.8")
testCompileOnly("org.projectlombok:lombok:1.18.8")
annotationProcessor("org.projectlombok:lombok:1.18.8")
testAnnotationProcessor("org.projectlombok:lombok:1.18.8")
2019-09-04 03:04:51 +02:00
implementation("com.github.Sauilitired:Jenkins4J:2.0-SNAPSHOT")
implementation("com.squareup.okhttp3:okhttp:3.14.0")
implementation("com.squareup.okio:okio:2.2.2")
implementation("org.jetbrains.kotlin:kotlin-stdlib:1.3.30")
}
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
jar.archiveFileName = "PlotSquared-API-${project.parent.version}.jar"
jar.destinationDirectory = file("../mvn/com/github/intellectualsites/plotsquared/PlotSquared-API/" + project.parent.version)
task createPom {
doLast {
pom {
project {
2019-08-08 01:16:44 +02:00
groupId = "com.github.intellectualsites.plotsquared"
artifactId = "PlotSquared-API"
version = project.parent.version
}
}.writeTo("../mvn/com/github/intellectualsites/plotsquared/PlotSquared-API/${project.parent.version}/PlotSquared-API-${project.parent.version}.pom")
pom {
project {
2019-08-08 01:16:44 +02:00
groupId = "com.github.intellectualsites.plotsquared"
artifactId = "PlotSquared-API"
version = "latest"
}
}.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 {
2019-08-08 01:16:44 +02:00
from("../mvn/com/github/intellectualsites/plotsquared/PlotSquared-API/${project.parent.version}/")
into("../mvn/com/github/intellectualsites/plotsquared/PlotSquared-API/latest/")
2019-08-06 21:05:04 +02:00
include("*.jar")
rename("PlotSquared-API-${project.parent.version}.jar", "PlotSquared-API-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"))
}
relocate('net.kyori.text', 'com.github.intellectualsites.plotsquared.formatting.text')
}
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)