-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.gradle
44 lines (36 loc) · 1.04 KB
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.github.jengelman.gradle.plugins:shadow:1.0.2'
classpath 'org.gradle.api.plugins:gradle-nexus-plugin:0.7.1'
}
}
project.version = '0.1.0-SNAPSHOT'
ext.albkitVersion = '+'
apply from: 'bootstrap/bootstrap.gradle'
apply from: 'bootstrap/publishing.gradle'
apply from: 'bootstrap/bukkit_plugin.gradle'
apply from: 'bootstrap/albkit.gradle'
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.github.jengelman.gradle.plugins:shadow:1.0.2'
}
}
repositories {
mavenLocal()
mavenCentral()
maven { url 'https://oss.sonatype.org/content/repositories/snapshots/' } // Sonatype snapshots
maven { url 'http://ci.frostcast.net/plugin/repository/everything' } // BarAPI
maven { url 'http://maven.sk89q.com/artifactory/repo/' } // sk89q
}
dependencies {
compile 'me.confuser:BarAPI:3.0'
compile 'com.sk89q:worldedit:5.6.2'
compile 'com.sk89q:worldguard:5.9'
}
defaultTasks 'clean', 'build', 'shadowJar', 'install', 'copyPlugin'