Plex-FAWE/worldedit-core/build.gradle

125 lines
3.7 KiB
Groovy
Raw Normal View History

2019-07-17 09:43:14 +00:00
plugins {
id("java-library")
id("eclipse")
id("idea")
id("net.ltgt.apt") version "0.21" apply false
id "net.ltgt.apt-eclipse" version "0.21"
id "net.ltgt.apt-idea" version "0.21"
}
2019-04-02 22:21:02 +00:00
repositories {
maven {url "http://ci.athion.net/job/PlotSquared-Breaking/ws/mvn/"}
}
2019-06-27 01:34:20 +00:00
configurations.all { Configuration it ->
it.resolutionStrategy { ResolutionStrategy rs ->
rs.force("com.google.guava:guava:21.0")
}
2019-08-15 19:21:24 +00:00
it.resolutionStrategy { ResolutionStrategy rs ->
rs.force("it.unimi.dsi:fastutil:8.2.1")
}
2019-06-27 01:34:20 +00:00
}
2019-04-02 22:21:02 +00:00
dependencies {
2019-06-27 01:34:20 +00:00
compile project(':worldedit-libs:core')
2019-04-02 22:21:02 +00:00
compile 'de.schlichtherle:truezip:6.8.3'
compile 'rhino:js:1.7R2'
2019-06-27 01:34:20 +00:00
compile 'org.yaml:snakeyaml:1.23'
2019-04-02 22:21:02 +00:00
compile 'com.google.guava:guava:21.0'
compile 'com.google.code.findbugs:jsr305:1.3.9'
compile 'com.thoughtworks.paranamer:paranamer:2.6'
compile 'com.google.code.gson:gson:2.8.0'
compile 'com.googlecode.json-simple:json-simple:1.1.1'
compile 'org.slf4j:slf4j-api:1.7.26'
2019-08-15 19:21:24 +00:00
compile "it.unimi.dsi:fastutil:8.2.1"
2019-06-27 01:34:20 +00:00
compileOnly project(':worldedit-libs:core:ap')
annotationProcessor project(':worldedit-libs:core:ap')
annotationProcessor "com.google.guava:guava:21.0"
def avVersion = "1.6.5"
compileOnly "com.google.auto.value:auto-value-annotations:$avVersion"
annotationProcessor "com.google.auto.value:auto-value:$avVersion"
2019-04-02 22:21:02 +00:00
//compile 'net.sf.trove4j:trove4j:3.0.3'
testCompile 'org.mockito:mockito-core:1.9.0-rc1'
// Fawe depends
2019-07-17 09:43:14 +00:00
compileOnly 'net.fabiozumbi12:redprotect:1.9.6'
compileOnly ("com.github.intellectualsites.plotsquared:PlotSquared-API:latest") {
2019-04-02 22:21:02 +00:00
transitive = false
}
2019-04-18 00:22:54 +00:00
compile 'com.mojang:datafixerupper:1.0.20'
2019-04-02 22:21:02 +00:00
compile 'com.github.luben:zstd-jni:1.1.1'
compile 'co.aikar:fastutil-lite:1.0'
}
2019-06-27 01:34:20 +00:00
tasks.withType(JavaCompile).configureEach {
2019-07-17 09:43:14 +00:00
dependsOn(":worldedit-libs:build")
2019-07-20 05:32:15 +00:00
it.options.compilerArgs << "-Xmaxerrs" << "10000"
2019-06-27 01:34:20 +00:00
it.options.compilerArgs.add("-Aarg.name.key.prefix=")
}
2019-04-02 22:21:02 +00:00
sourceSets {
main {
java {
srcDir 'src/main/java'
srcDir 'src/legacy/java'
}
resources {
srcDir 'src/main/resources'
}
}
}
processResources {
from('src/main/resources') {
include 'fawe.properties'
expand(
version: "${project.parent.version}",
2019-04-02 22:21:02 +00:00
name: project.parent.name,
commit: "${git.head().abbreviatedId}",
2019-07-17 05:43:18 +00:00
date: "${git.head().getDate().format("yy.MM.dd")}"
)
2019-04-02 22:21:02 +00:00
}
}
jar.archiveName="fawe-api-${project.parent.version}.jar"
jar.destinationDir = file '../mvn/com/boydti/fawe-api/' + project.parent.version
2019-07-17 09:43:14 +00:00
task createPom {
doLast {
pom {
project {
groupId 'com.boydti'
artifactId 'fawe-api'
version project.parent.version
}
2019-04-02 22:21:02 +00:00
}
2019-07-17 09:43:14 +00:00
.getEffectivePom()
.setDependencies(new ArrayList<>())
.writeTo("../mvn/com/boydti/fawe-api/${project.parent.version}/fawe-api-${project.parent.version}.pom")
pom {
project {
groupId 'com.boydti'
artifactId 'fawe-api'
version 'latest'
}
2019-04-02 22:21:02 +00:00
}
2019-07-17 09:43:14 +00:00
.getEffectivePom()
.setDependencies(new ArrayList<>())
.writeTo("../mvn/com/boydti/fawe-api/latest/fawe-api-latest.pom")
2019-04-02 22:21:02 +00:00
}
}
task copyFiles {
doLast {
copy {
from "../mvn/com/boydti/fawe-api/${project.parent.version}/"
into '../mvn/com/boydti/fawe-api/latest/'
include('*.jar')
rename ("fawe-api-${project.parent.version}.jar", 'fawe-api-latest.jar')
}
}
}
build.dependsOn(shadowJar)
build.finalizedBy(copyFiles)
copyFiles.dependsOn(createPom)