-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathbuild.gradle
51 lines (40 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
45
46
47
48
49
50
51
plugins {
id "com.github.johnrengelman.shadow" version "1.2.4"
}
subprojects {
apply plugin: 'java'
apply plugin: 'com.github.johnrengelman.shadow'
sourceCompatibility = 1.8
group 'fr.minuskube'
version '1.0'
configurations {
provided
}
sourceSets {
main.compileClasspath += configurations.provided
test.compileClasspath += configurations.provided
test.runtimeClasspath += configurations.provided
}
repositories {
mavenCentral()
}
dependencies {
compile "org.slf4j:slf4j-api:1.7.25"
compile "org.slf4j:slf4j-simple:1.7.25"
testCompile "junit:junit:4.12"
}
}
project(':bukkit') {
repositories {
maven {
url "https://hub.spigotmc.org/nexus/content/repositories/snapshots/"
}
maven {
url "https://oss.sonatype.org/content/repositories/snapshots"
}
}
dependencies {
compile project(":core")
provided "org.spigotmc:spigot-api:1.11.2-R0.1-SNAPSHOT"
}
}