2016-02-23 05:11:28 +01:00
|
|
|
buildscript {
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
2016-07-01 23:13:49 +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 {
|
2016-02-23 05:11:28 +01:00
|
|
|
classpath 'com.github.jengelman.gradle.plugins:shadow:1.2.3'
|
2016-05-19 19:32:35 +02:00
|
|
|
classpath 'org.ajoberstar:grgit:1.7.0'
|
2016-02-23 05:11:28 +01:00
|
|
|
}
|
2018-01-25 07:46:41 +01:00
|
|
|
configurations.all {
|
|
|
|
resolutionStrategy {
|
|
|
|
force 'org.ow2.asm:asm:6.0_BETA'
|
|
|
|
}
|
|
|
|
}
|
2016-02-23 05:11:28 +01:00
|
|
|
}
|
2016-02-26 13:55:21 +01:00
|
|
|
|
2016-02-23 05:11:28 +01:00
|
|
|
group = 'com.intellectualcrafters'
|
2016-07-06 05:39:38 +02:00
|
|
|
|
2017-08-09 07:04:59 +02:00
|
|
|
def revision = ""
|
|
|
|
def buildNumber = ""
|
|
|
|
def date = ""
|
2016-05-19 19:32:35 +02:00
|
|
|
ext {
|
2017-08-09 07:04:59 +02:00
|
|
|
git = org.ajoberstar.grgit.Grgit.open(file(".git"))
|
|
|
|
date = git.head().date.format("yy.MM.dd")
|
|
|
|
revision = "-${git.head().abbreviatedId}"
|
|
|
|
parents = git.head().parentIds;
|
|
|
|
index = 0; // Offset to match CI
|
|
|
|
for (;parents != null && !parents.isEmpty();index++) {
|
|
|
|
parents = git.getResolve().toCommit(parents.get(0)).getParentIds()
|
|
|
|
}
|
|
|
|
buildNumber = "-${index}"
|
2016-05-19 19:32:35 +02:00
|
|
|
}
|
2017-08-09 07:04:59 +02:00
|
|
|
|
|
|
|
version = date + revision + buildNumber
|
|
|
|
|
2016-09-26 10:31:08 +02:00
|
|
|
description = rootProject.name
|
2017-04-03 23:59:36 +02:00
|
|
|
if ( project.hasProperty("lzNoVersion") ) { // gradle build -PlzNoVersion
|
|
|
|
version = "unknown";
|
|
|
|
}
|
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'
|
|
|
|
|
2016-02-26 13:55:21 +01:00
|
|
|
|
2016-02-23 05:11:28 +01:00
|
|
|
dependencies {
|
2016-06-01 22:50:35 +02:00
|
|
|
compile(group: 'com.sk89q.worldedit', name: 'worldedit-core', version:'6.1.3-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
|
|
|
}
|
2016-04-02 01:14:46 +02:00
|
|
|
compile 'com.google.guava:guava:10.0'
|
2016-02-23 05:11:28 +01:00
|
|
|
}
|
2016-04-01 03:27:29 +02:00
|
|
|
clean{
|
|
|
|
delete file("../target")
|
|
|
|
}
|
2016-02-23 05:11:28 +01:00
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
maven {url "http://empcraft.com/maven2"}
|
2016-03-07 20:56:06 +01:00
|
|
|
maven {url "http://repo.mcstats.org/content/repositories/public"}
|
2016-02-23 05:11:28 +01:00
|
|
|
maven {url "http://maven.sk89q.com/repo/"}
|
|
|
|
maven {url "http://repo.maven.apache.org/maven2"}
|
|
|
|
}
|
2016-02-26 13:55:21 +01:00
|
|
|
}
|