mirror of
https://github.com/IntellectualSites/PlotSquared.git
synced 2024-11-02 08:50:17 +01:00
6953187cac
And fix a little typo alongside bumping versioning to v5
138 lines
4.4 KiB
Groovy
138 lines
4.4 KiB
Groovy
import org.ajoberstar.grgit.Grgit
|
|
|
|
buildscript {
|
|
repositories {
|
|
mavenCentral()
|
|
maven { url = "https://oss.sonatype.org/content/repositories/snapshots/" }
|
|
jcenter()
|
|
}
|
|
dependencies {
|
|
classpath("com.github.jengelman.gradle.plugins:shadow:5.0.0")
|
|
}
|
|
configurations.all {
|
|
resolutionStrategy {
|
|
force("org.ow2.asm:asm:7.3.1")
|
|
force("org.jetbrains:annotations:18.0.0")
|
|
}
|
|
}
|
|
}
|
|
|
|
plugins {
|
|
id "maven-publish"
|
|
id "org.ajoberstar.grgit" version "4.0.1"
|
|
}
|
|
|
|
group = "com.github.intellectualsites.plotsquared"
|
|
|
|
def rootVersion = "5"
|
|
def revision = ""
|
|
def buildNumber = ""
|
|
def date = ""
|
|
ext {
|
|
git = Grgit.open(dir: new File(rootDir.toString() + "/.git"))
|
|
date = git.head().getDate().format("yy.MM.dd")
|
|
revision = "-${git.head().abbreviatedId}"
|
|
parents = git.head().parentIds
|
|
if (project.hasProperty("buildnumber")) {
|
|
buildNumber = "$buildnumber"
|
|
} else {
|
|
index = -2042 // Offset to match CI
|
|
for (; parents != null && !parents.isEmpty(); index++) {
|
|
parents = git.getResolve().toCommit(parents.get(0)).getParentIds()
|
|
}
|
|
buildNumber = "${index}"
|
|
}
|
|
}
|
|
|
|
version = String.format("%s.%s", rootVersion, buildNumber)
|
|
|
|
description = rootProject.name
|
|
|
|
allprojects {
|
|
gradle.projectsEvaluated {
|
|
tasks.withType(JavaCompile) {
|
|
options.compilerArgs << "-Xmaxerrs" << "1000"
|
|
}
|
|
}
|
|
}
|
|
|
|
subprojects {
|
|
apply(plugin: "java")
|
|
apply(plugin: "maven")
|
|
apply(plugin: "eclipse")
|
|
apply(plugin: "idea")
|
|
apply(plugin: "com.github.johnrengelman.shadow")
|
|
|
|
group = "com.github.intellectualsites.plotsquared"
|
|
|
|
clean.doFirst {
|
|
delete("../target")
|
|
}
|
|
|
|
dependencies {
|
|
implementation("com.sk89q.worldedit:worldedit-core:7.0.0") {
|
|
exclude(module: "bukkit-classloader-check")
|
|
exclude(module: "mockito-core")
|
|
exclude(module: "dummypermscompat")
|
|
}
|
|
implementation("net.kyori:text-api:3.0.2")
|
|
implementation("net.kyori:text-serializer-gson:3.0.2")
|
|
implementation("net.kyori:text-serializer-legacy:3.0.2")
|
|
implementation("net.kyori:text-serializer-plain:3.0.2")
|
|
implementation("com.google.guava:guava:21.0") {
|
|
because("Minecraft uses Guava 21 as of 1.13")
|
|
}
|
|
compileOnly("org.jetbrains:annotations:17.0.0")
|
|
compileClasspath("org.projectlombok:lombok:1.18.12")
|
|
testCompileOnly("org.projectlombok:lombok:1.18.12")
|
|
annotationProcessor("org.projectlombok:lombok:1.18.8")
|
|
testAnnotationProcessor("org.projectlombok:lombok:1.18.8")
|
|
testImplementation("junit:junit:4.13")
|
|
}
|
|
|
|
configurations.all {
|
|
resolutionStrategy {
|
|
force("junit:junit:4.12")
|
|
force("com.google.guava:guava:21.0")
|
|
force("org.jetbrains:annotations:18.0.0")
|
|
force("com.google.code.findbugs:jsr305:3.0.2")
|
|
}
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
maven { url = "https://maven.enginehub.org/repo/" }
|
|
maven { url = "https://repo.maven.apache.org/maven2" }
|
|
maven { url = "https://jitpack.io" }
|
|
}
|
|
|
|
shadowJar {
|
|
dependencies {
|
|
include(dependency("net.kyori:text-api:3.0.2"))
|
|
}
|
|
relocate("io.papermc.lib", "com.github.intellectualsites.plotsquared.bukkit.paperlib")
|
|
// relocate('org.mcstats', 'com.plotsquared.stats')
|
|
archiveFileName = "${parent.name}-${project.name}-${parent.version}.jar"
|
|
destinationDirectory = file "../target"
|
|
}
|
|
}
|
|
|
|
task aggregatedJavadocs(type: Javadoc, description: "Generate javadocs from all child projects as if it was a single project", group: "Documentation") {
|
|
destinationDir = file("./docs/javadoc")
|
|
title = "$project.name $version API"
|
|
options.author true
|
|
options.links "http://docs.spring.io/spring/docs/4.3.x/javadoc-api/", "http://docs.oracle.com/javase/8/docs/api/", "http://docs.spring.io/spring-ws/docs/2.3.0.RELEASE/api/", "http://docs.spring.io/spring-security/site/docs/4.0.4.RELEASE/apidocs/"
|
|
options.addStringOption("Xdoclint:none", "-quiet")
|
|
|
|
delete("./docs")
|
|
|
|
subprojects.each { proj ->
|
|
proj.tasks.withType(Javadoc).each { javadocTask ->
|
|
source += javadocTask.source
|
|
classpath += javadocTask.classpath
|
|
excludes += javadocTask.excludes
|
|
includes += javadocTask.includes
|
|
}
|
|
}
|
|
}
|