PlotSquared/build.gradle

50 lines
1.3 KiB
Groovy
Raw Normal View History

2016-06-01 16:50:35 -04:00
import org.ajoberstar.grgit.Grgit
2016-02-22 23:11:28 -05:00
buildscript {
repositories {
mavenCentral()
2016-07-01 17:13:49 -04:00
maven { url = "https://oss.sonatype.org/content/repositories/snapshots/"}
2016-02-22 23:11:28 -05:00
jcenter()
}
2016-07-05 23:39:38 -04:00
dependencies {
2016-02-22 23:11:28 -05:00
classpath 'com.github.jengelman.gradle.plugins:shadow:1.2.3'
2016-05-20 03:32:35 +10:00
classpath 'org.ajoberstar:grgit:1.7.0'
2016-02-22 23:11:28 -05:00
}
}
2016-02-22 23:11:28 -05:00
group = 'com.intellectualcrafters'
2016-07-05 23:39:38 -04:00
2016-05-20 03:32:35 +10:00
ext {
2016-06-22 12:31:25 -04:00
git = Grgit.open()
2016-07-05 23:39:38 -04:00
revision = "${git.head().abbreviatedId}"
2016-05-20 03:32:35 +10:00
}
2016-08-18 10:38:06 -04:00
version = "3.4.6-SNAPSHOT-${revision}"
description = rootProject.name
2016-02-22 23:11:28 -05:00
subprojects {
apply plugin: 'java'
apply plugin: 'maven'
apply plugin: 'eclipse'
apply plugin: 'idea'
2016-07-01 17:13:49 -04:00
apply plugin: 'com.github.johnrengelman.shadow'
2016-02-22 23:11:28 -05:00
dependencies {
2016-06-01 16:50:35 -04:00
compile(group: 'com.sk89q.worldedit', name: 'worldedit-core', version:'6.1.3-SNAPSHOT') {
2016-02-22 23:11:28 -05:00
exclude(module: 'bukkit-classloader-check')
exclude(module: 'mockito-core')
exclude(module: 'dummypermscompat')
2016-02-22 23:11:28 -05:00
}
compile 'com.google.guava:guava:10.0'
2016-02-22 23:11:28 -05:00
}
2016-03-31 21:27:29 -04:00
clean{
delete file("../target")
}
2016-02-22 23:11:28 -05:00
repositories {
mavenCentral()
maven {url "http://empcraft.com/maven2"}
2016-03-07 14:56:06 -05:00
maven {url "http://repo.mcstats.org/content/repositories/public"}
2016-02-22 23:11:28 -05:00
maven {url "http://maven.sk89q.com/repo/"}
maven {url "http://repo.maven.apache.org/maven2"}
}
}