mirror of
https://github.com/IntellectualSites/PlotSquared.git
synced 2024-11-21 12:46:46 +01:00
148 lines
3.7 KiB
Plaintext
148 lines
3.7 KiB
Plaintext
|
import com.github.jengelman.gradle.plugins.shadow.ShadowPlugin
|
||
|
import net.minecrell.gradle.licenser.LicenseExtension
|
||
|
import net.minecrell.gradle.licenser.Licenser
|
||
|
import org.ajoberstar.grgit.Grgit
|
||
|
import org.ajoberstar.grgit.gradle.GrgitPlugin
|
||
|
|
||
|
plugins {
|
||
|
java
|
||
|
`java-library`
|
||
|
`maven-publish`
|
||
|
id("com.github.johnrengelman.shadow") version "6.0.0"
|
||
|
id("org.ajoberstar.grgit") version "4.1.0"
|
||
|
id("net.minecrell.licenser") version "0.4.1"
|
||
|
|
||
|
eclipse
|
||
|
idea
|
||
|
}
|
||
|
|
||
|
var ver by extra("6.0.0")
|
||
|
var versuffix by extra("-SNAPSHOT")
|
||
|
val versionsuffix: String? by project
|
||
|
if (versionsuffix != null) {
|
||
|
versuffix = "-$versionsuffix"
|
||
|
}
|
||
|
version = ver + versuffix
|
||
|
|
||
|
allprojects {
|
||
|
group = "com.plotsquared"
|
||
|
version = rootProject.version
|
||
|
|
||
|
repositories {
|
||
|
mavenCentral()
|
||
|
jcenter()
|
||
|
|
||
|
maven {
|
||
|
name = "Sonatype OSS"
|
||
|
url = uri("https://oss.sonatype.org/content/repositories/snapshots/")
|
||
|
}
|
||
|
|
||
|
maven {
|
||
|
name = "Jitpack"
|
||
|
url = uri("https://jitpack.io")
|
||
|
}
|
||
|
|
||
|
maven {
|
||
|
name = "IntellectualSites Repository"
|
||
|
url = uri("https://mvn.intellectualsites.com/content/repositories/snapshots")
|
||
|
}
|
||
|
|
||
|
maven {
|
||
|
name = "EngineHub Repository"
|
||
|
url = uri("https://maven.enginehub.org/repo/")
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
subprojects {
|
||
|
apply {
|
||
|
plugin<JavaPlugin>()
|
||
|
plugin<JavaLibraryPlugin>()
|
||
|
plugin<MavenPublishPlugin>()
|
||
|
plugin<ShadowPlugin>()
|
||
|
plugin<GrgitPlugin>()
|
||
|
plugin<Licenser>()
|
||
|
|
||
|
plugin<EclipsePlugin>()
|
||
|
plugin<IdeaPlugin>()
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
api("com.sk89q.worldedit:worldedit-core:7.2.0-SNAPSHOT") {
|
||
|
exclude(group = "bukkit-classloader-check")
|
||
|
exclude(group = "mockito-core")
|
||
|
exclude(group = "dummypermscompat")
|
||
|
}
|
||
|
|
||
|
// Tests
|
||
|
testImplementation("junit:junit:4.13")
|
||
|
}
|
||
|
|
||
|
tasks {
|
||
|
named<Delete>("clean") {
|
||
|
doFirst {
|
||
|
delete("../target")
|
||
|
}
|
||
|
}
|
||
|
|
||
|
withType<Test> {
|
||
|
useJUnitPlatform()
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
allprojects {
|
||
|
configure<JavaPluginConvention> {
|
||
|
sourceCompatibility = JavaVersion.VERSION_1_8
|
||
|
targetCompatibility = sourceCompatibility
|
||
|
}
|
||
|
|
||
|
configure<LicenseExtension> {
|
||
|
header = rootProject.file("HEADER.txt")
|
||
|
include("**/*.java")
|
||
|
newLine = false
|
||
|
}
|
||
|
|
||
|
java {
|
||
|
withSourcesJar()
|
||
|
withJavadocJar()
|
||
|
}
|
||
|
|
||
|
tasks {
|
||
|
compileJava {
|
||
|
options.compilerArgs.addAll(arrayOf("-Xmaxerrs", "1000"))
|
||
|
options.compilerArgs.add("-Xlint:all")
|
||
|
for (disabledLint in arrayOf("processing", "path", "fallthrough", "serial"))
|
||
|
options.compilerArgs.add("-Xlint:$disabledLint")
|
||
|
options.isDeprecation = true
|
||
|
options.encoding = "UTF-8"
|
||
|
}
|
||
|
|
||
|
javadoc {
|
||
|
val opt = options as StandardJavadocDocletOptions
|
||
|
opt.addStringOption("Xdoclint:none", "-quiet")
|
||
|
opt.tags(
|
||
|
"apiNote:a:API Note:",
|
||
|
"implSpec:a:Implementation Requirements:",
|
||
|
"implNote:a:Implementation Note:"
|
||
|
)
|
||
|
}
|
||
|
|
||
|
shadowJar {
|
||
|
this.archiveClassifier.set(null as String?)
|
||
|
this.archiveFileName.set("${project.name}-${project.version}.${this.archiveExtension.getOrElse("jar")}")
|
||
|
this.destinationDirectory.set(rootProject.tasks.shadowJar.get().destinationDirectory.get())
|
||
|
}
|
||
|
|
||
|
named("build") {
|
||
|
dependsOn(named("shadowJar"))
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
extra {
|
||
|
val git: Grgit = Grgit.open {
|
||
|
dir = File("$rootDir/.git")
|
||
|
}
|
||
|
}
|