TF-PlotSquared/build.gradle

108 lines
3.4 KiB
Groovy
Raw Permalink Normal View History

import org.ajoberstar.grgit.Grgit
2016-02-23 04:11:28 +00:00
buildscript {
repositories {
mavenCentral()
2018-08-10 15:01:10 +00:00
maven { url = "https://oss.sonatype.org/content/repositories/snapshots/" }
2016-02-23 04:11:28 +00:00
jcenter()
}
2016-07-06 03:39:38 +00:00
dependencies {
2019-06-27 06:00:29 +00:00
classpath 'com.github.jengelman.gradle.plugins:shadow:5.0.0'
2016-02-23 04:11:28 +00:00
}
2018-01-25 06:46:41 +00:00
configurations.all {
resolutionStrategy {
2019-06-27 06:00:29 +00:00
force 'org.ow2.asm:asm:7.1'
2018-01-25 06:46:41 +00:00
}
}
2016-02-23 04:11:28 +00:00
}
2018-12-17 13:16:53 +00:00
plugins {
2019-06-27 06:00:29 +00:00
id 'maven-publish'
id "org.ajoberstar.grgit" version "3.1.1"
2018-12-17 13:16:53 +00:00
}
2019-01-17 14:31:18 +00:00
group = 'com.github.intellectualsites.plotsquared'
2016-07-06 03:39:38 +00:00
def rootVersion = "4"
def revision = ""
def buildNumber = ""
def date = ""
2016-05-19 17:32:35 +00:00
ext {
git = Grgit.open(dir: '.git')
date = git.head().getDate().format("yy.MM.dd")
revision = "-${git.head().abbreviatedId}"
parents = git.head().parentIds;
2019-06-27 06:00:29 +00:00
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}"
}
2016-05-19 17:32:35 +00:00
}
// version = String.format("%s.%s%s%s", rootVersion, date, revision, buildNumber)
version = String.format("%s.%s", rootVersion, buildNumber)
description = rootProject.name
2016-02-23 04:11:28 +00:00
subprojects {
apply plugin: 'java'
apply plugin: 'maven'
apply plugin: 'eclipse'
apply plugin: 'idea'
2016-07-01 21:13:49 +00:00
apply plugin: 'com.github.johnrengelman.shadow'
2019-06-27 06:00:29 +00:00
group = 'com.github.intellectualsites.plotsquared'
2019-04-05 16:39:16 +00:00
2019-06-27 06:00:29 +00:00
clean.doFirst {
delete "../target"
2019-04-05 16:39:16 +00:00
}
2016-02-23 04:11:28 +00:00
dependencies {
2019-06-27 06:00:29 +00:00
implementation('com.sk89q.worldedit:worldedit-core:7.0.0-SNAPSHOT') {
2016-02-23 04:11:28 +00:00
exclude(module: 'bukkit-classloader-check')
exclude(module: 'mockito-core')
exclude(module: 'dummypermscompat')
2016-02-23 04:11:28 +00:00
}
2019-06-27 06:00:29 +00:00
implementation 'net.kyori:text-api:3.0.0'
//Minecraft uses Guava 21 as of 1.13.
compile 'com.google.guava:guava:21.0'
2019-06-27 06:00:29 +00:00
compileOnly 'org.jetbrains:annotations:17.0.0'
compile("org.projectlombok:lombok:1.18.6")
compileOnly("org.projectlombok:lombok:1.18.6")
testCompileOnly("org.projectlombok:lombok:1.18.6")
annotationProcessor("org.projectlombok:lombok:1.18.6")
testAnnotationProcessor("org.projectlombok:lombok:1.18.6")
testImplementation "junit:junit:4.12"
2016-02-23 04:11:28 +00:00
}
2019-06-27 06:00:29 +00:00
2016-02-23 04:11:28 +00:00
repositories {
mavenCentral()
2018-08-10 15:01:10 +00:00
maven { url "http://maven.sk89q.com/repo/" }
maven { url "http://repo.maven.apache.org/maven2" }
2019-06-27 06:00:29 +00:00
maven { url 'https://jitpack.io' }
}
}
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
}
}
}