0

Converted to a gradle project

This commit is contained in:
psrcek
2016-11-19 18:35:46 +01:00
parent cbe402fc73
commit 436da98907
34 changed files with 282 additions and 0 deletions

21
build.gradle Normal file
View File

@@ -0,0 +1,21 @@
apply plugin: 'java'
apply plugin: 'eclipse'
archivesBaseName = 'CommandManager'
version = '2.0'
task wrapper(type: Wrapper) {
gradleVersion = '1.5'
}
repositories {
maven {
// spigot
url "https://hub.spigotmc.org/nexus/content/repositories/snapshots/"
// spigot dependencies
url "https://hub.spigotmc.org/nexus/content/repositories/public/"
}
}
dependencies {
compile 'org.bukkit:bukkit:1.10.2-R0.1-SNAPSHOT'
}