-
Notifications
You must be signed in to change notification settings - Fork 15
/
build.gradle
47 lines (41 loc) · 1.1 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
45
46
47
allprojects {
apply plugin: "java"
group= "br.com.gamemods.minecity"
version = "1.0-SNAPSHOT"
sourceCompatibility = 1.8
targetCompatibility = 1.8
tasks.withType(JavaCompile) {
options.encoding = 'UTF-8'
}
}
subprojects {
repositories {
mavenCentral()
maven {
name = "spigot-nexus"
url = "https://hub.spigotmc.org/nexus/content/groups/public/"
}
maven {
url = 'https://oss.sonatype.org/content/groups/public/'
}
}
dependencies {
compile "org.jetbrains:annotations:13.0"
testCompile "junit:junit:4.12"
testCompile "org.powermock:powermock-module-junit4:1.6.5"
testCompile "org.powermock:powermock-api-mockito:1.6.5"
testCompile project(":UnitTest")
testCompile "mysql:mysql-connector-java:5.1.32"
}
}
project(':Bukkit') {
dependencies {
compile project(':Core')
compile "org.spigotmc:spigot-api:1.10.2-R0.1-SNAPSHOT"
}
}
project(':UnitTest') {
dependencies {
compile "org.assertj:assertj-core:3.1.0"
}
}