2018-12-21 14:38:28 +01:00
|
|
|
import org.ajoberstar.grgit.Grgit
|
|
|
|
|
2016-02-23 05:11:28 +01:00
|
|
|
buildscript {
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
2018-08-10 17:01:10 +02:00
|
|
|
maven { url = "https://oss.sonatype.org/content/repositories/snapshots/" }
|
2016-02-23 05:11:28 +01:00
|
|
|
jcenter()
|
|
|
|
}
|
2016-07-06 05:39:38 +02:00
|
|
|
dependencies {
|
2018-12-21 14:38:28 +01:00
|
|
|
classpath 'com.github.jengelman.gradle.plugins:shadow:4.0.2'
|
2018-12-21 17:26:19 +01:00
|
|
|
classpath 'org.ajoberstar.grgit:grgit-gradle:3.0.0'
|
2016-02-23 05:11:28 +01:00
|
|
|
}
|
2018-01-25 07:46:41 +01:00
|
|
|
configurations.all {
|
|
|
|
resolutionStrategy {
|
2018-12-21 17:26:19 +01:00
|
|
|
force 'org.ow2.asm:asm:7.0'
|
2018-01-25 07:46:41 +01:00
|
|
|
}
|
|
|
|
}
|
2016-02-23 05:11:28 +01:00
|
|
|
}
|
2016-02-26 13:55:21 +01:00
|
|
|
|
2018-12-17 14:16:53 +01:00
|
|
|
plugins {
|
2018-08-10 17:53:14 +02:00
|
|
|
id 'io.franzbecker.gradle-lombok' version '1.14'
|
2018-12-17 14:16:53 +01:00
|
|
|
}
|
|
|
|
|
2019-01-17 15:31:18 +01:00
|
|
|
group = 'com.github.intellectualsites.plotsquared'
|
2016-07-06 05:39:38 +02:00
|
|
|
|
2018-12-06 16:53:21 +01:00
|
|
|
def rootVersion = "4"
|
2017-08-09 07:04:59 +02:00
|
|
|
def revision = ""
|
|
|
|
def buildNumber = ""
|
|
|
|
def date = ""
|
2016-05-19 19:32:35 +02:00
|
|
|
ext {
|
2018-12-21 17:26:19 +01:00
|
|
|
git = Grgit.open(dir: '.git')
|
|
|
|
date = git.head().getDate().format("yy.MM.dd")
|
2017-08-09 07:04:59 +02:00
|
|
|
revision = "-${git.head().abbreviatedId}"
|
|
|
|
parents = git.head().parentIds;
|
2019-02-10 23:51:21 +01:00
|
|
|
index = -2049; // Offset to match CI
|
2018-08-10 17:01:10 +02:00
|
|
|
for (; parents != null && !parents.isEmpty(); index++) {
|
2017-08-09 07:04:59 +02:00
|
|
|
parents = git.getResolve().toCommit(parents.get(0)).getParentIds()
|
|
|
|
}
|
2019-01-02 14:01:37 +01:00
|
|
|
buildNumber = "${index}"
|
2016-05-19 19:32:35 +02:00
|
|
|
}
|
2017-08-09 07:04:59 +02:00
|
|
|
|
2019-01-02 14:01:37 +01:00
|
|
|
// version = String.format("%s.%s%s%s", rootVersion, date, revision, buildNumber)
|
|
|
|
version = String.format("%s.%s", rootVersion, buildNumber)
|
2017-08-09 07:04:59 +02:00
|
|
|
|
2016-09-26 10:31:08 +02:00
|
|
|
description = rootProject.name
|
2016-02-23 05:11:28 +01:00
|
|
|
|
|
|
|
subprojects {
|
|
|
|
apply plugin: 'java'
|
|
|
|
apply plugin: 'maven'
|
2016-02-26 13:55:21 +01:00
|
|
|
apply plugin: 'eclipse'
|
|
|
|
apply plugin: 'idea'
|
2016-07-01 23:13:49 +02:00
|
|
|
apply plugin: 'com.github.johnrengelman.shadow'
|
|
|
|
|
2018-12-21 17:26:19 +01:00
|
|
|
group = 'com.github.intellectualsites,plotsquared'
|
|
|
|
|
2018-08-10 20:46:38 +02:00
|
|
|
lombok {
|
2018-12-21 14:38:28 +01:00
|
|
|
version = '1.18.4'
|
2018-08-10 20:46:38 +02:00
|
|
|
sha256 = ""
|
|
|
|
}
|
2016-02-26 13:55:21 +01:00
|
|
|
|
2016-02-23 05:11:28 +01:00
|
|
|
dependencies {
|
2018-12-20 00:18:57 +01:00
|
|
|
compile(group: 'com.sk89q.worldedit', name: 'worldedit-core', version: '7.0.0-SNAPSHOT') {
|
2016-02-23 05:11:28 +01:00
|
|
|
exclude(module: 'bukkit-classloader-check')
|
2016-06-24 02:12:17 +02:00
|
|
|
exclude(module: 'mockito-core')
|
|
|
|
exclude(module: 'dummypermscompat')
|
2016-02-23 05:11:28 +01:00
|
|
|
}
|
2019-02-06 18:02:20 +01:00
|
|
|
//Minecraft uses Guava 21 as of 1.13.
|
|
|
|
compile 'com.google.guava:guava:21.0'
|
2018-12-06 16:49:49 +01:00
|
|
|
compileOnly 'org.projectlombok:lombok:1.18.4'
|
2018-12-21 17:26:19 +01:00
|
|
|
testImplementation "junit:junit:4.12"
|
2016-02-23 05:11:28 +01:00
|
|
|
}
|
2018-08-10 17:01:10 +02:00
|
|
|
clean {
|
2016-04-01 03:27:29 +02:00
|
|
|
delete file("../target")
|
|
|
|
}
|
2016-02-23 05:11:28 +01:00
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
2018-08-10 17:01:10 +02:00
|
|
|
maven { url "http://maven.sk89q.com/repo/" }
|
|
|
|
maven { url "http://repo.maven.apache.org/maven2" }
|
2016-02-23 05:11:28 +01:00
|
|
|
}
|
2018-08-10 17:01:10 +02:00
|
|
|
}
|