FastAsyncWorldedit/build.gradle

57 lines
1.8 KiB
Groovy
Raw Normal View History

2016-04-02 06:06:24 +02:00
buildscript {
repositories {
mavenCentral()
maven { url = "https://oss.sonatype.org/content/repositories/snapshots/" }
jcenter()
}
dependencies {
classpath 'com.github.jengelman.gradle.plugins:shadow:1.2.3'
2016-05-14 15:38:07 +02:00
classpath 'org.ajoberstar:grgit:1.7.0'
2016-04-02 06:06:24 +02:00
}
2016-04-02 06:06:24 +02:00
}
apply plugin: 'java'
clean { delete "target" }
2016-04-02 06:06:24 +02:00
group = 'com.boydti.fawe'
def revision = ""
ext {
2016-05-14 15:38:07 +02:00
git = org.ajoberstar.grgit.Grgit.open(file(".git"))
revision = "-${git.head().abbreviatedId}"
}
2016-06-07 22:36:26 +02:00
version = "3.5.1${revision}"
2016-04-02 06:06:24 +02:00
description = """FastAsyncWorldEdit"""
subprojects {
apply plugin: 'java'
apply plugin: 'maven'
apply plugin: 'eclipse'
apply plugin: 'idea'
2016-06-10 06:08:37 +02:00
sourceCompatibility = 1.7
targetCompatibility = 1.7
2016-04-02 06:06:24 +02:00
dependencies {
2016-06-27 15:56:11 +02:00
compile(group: 'com.sk89q.worldedit', name: 'worldedit-core', version:'6.1.3-SNAPSHOT') {
2016-04-02 06:06:24 +02:00
exclude(module: 'bukkit-classloader-check')
}
compile 'com.sk89q:worldguard:6.0.0-SNAPSHOT'
compile 'com.plotsquared:PlotSquared:3.4.1-SNAPSHOT'
compile 'org.primesoft:BlocksHub:2.0'
2016-04-02 06:06:24 +02:00
}
repositories {
mavenCentral()
maven {url "http://empcraft.com/maven2"}
maven {url "http://repo.mcstats.org/content/repositories/public"}
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"}
maven {url "http://ci.frostcast.net/plugin/repository/everything"}
maven {url "http://maven.sk89q.com/artifactory/repo/"}
maven {url "http://nexus.theyeticave.net/content/repositories/pub_releases"}
maven {url "http://repo.spongepowered.org/maven"}
}
}