PlotSquared/build.gradle

47 lines
1.3 KiB
Groovy
Raw Normal View History

2016-02-23 05:11:28 +01:00
buildscript {
repositories {
mavenCentral()
maven { url = "https://oss.sonatype.org/content/repositories/snapshots/" }
jcenter()
2016-05-10 20:24:02 +02:00
mavenLocal()
2016-02-23 05:11:28 +01:00
}
dependencies {
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
}
}
2016-02-23 05:11:28 +01:00
group = 'com.intellectualcrafters'
2016-05-19 19:32:35 +02:00
def revision = ""
ext {
git = org.ajoberstar.grgit.Grgit.open(file(".git"))
revision = "-${git.head().abbreviatedId}"
}
version = "3.4.0${revision}"
2016-02-23 05:11:28 +01:00
description = """PlotSquared"""
subprojects {
apply plugin: 'java'
apply plugin: 'maven'
apply plugin: 'eclipse'
apply plugin: 'idea'
2016-02-23 05:11:28 +01:00
dependencies {
compile(group: 'com.sk89q', name: 'worldedit', version:'6.0.0-SNAPSHOT') {
exclude(module: 'bukkit-classloader-check')
}
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 "https://hub.spigotmc.org/nexus/content/groups/public/"}
maven {url "http://maven.sk89q.com/repo/"}
maven {url "http://nexus.theyeticave.net/content/repositories/pub_releases"}
maven {url "http://repo.maven.apache.org/maven2"}
}
}