summaryrefslogtreecommitdiff
path: root/build.gradle
blob: 7c7fd5021db617f65320d9b3458033153aa90256 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
apply plugin: 'java'
apply plugin: 'eclipse'
archivesBaseName = 'CommandManager'
version = '2.0' 

task wrapper(type: Wrapper) {
    gradleVersion = '3.2.1'    
}

repositories {
  mavenCentral()
  
  maven {
    // spigot
    url "https://hub.spigotmc.org/nexus/content/repositories/snapshots/"
  }
}

dependencies {
  compile 'org.bukkit:bukkit:1.11.2-R0.1-SNAPSHOT'
}