-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.gradle
44 lines (38 loc) · 1.21 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
plugins {
id 'java'
id 'eclipse'
id 'idea'
id 'maven-publish'
id 'checkstyle'
id 'jacoco'
id "com.github.hierynomus.license" version "0.14.0"
id "com.jfrog.bintray" version "1.8.4"
}
archivesBaseName = project.name.toLowerCase()
sourceCompatibility = "1.${version_java}"
targetCompatibility = "1.${version_java}"
repositories {
jcenter()
maven {
name 'Sonatype'
url 'https://oss.sonatype.org/content/repositories/snapshots/'
}
maven {
name 'Spigot'
url 'https://hub.spigotmc.org/nexus/content/repositories/snapshots/'
}
}
dependencies {
compile group: 'com.google.guava', name: 'guava', version: version_guava
compile group: 'org.yaml', name: 'snakeyaml', version: version_snakeyaml
testCompile "junit:junit:${version_junit}"
testCompile "com.google.testing.compile:compile-testing:${version_compiletesting}"
testCompile "com.google.truth:truth:${version_truth}"
testCompile("org.spigotmc:spigot-api:${version_spigot}-SNAPSHOT") {
exclude group: "org.yaml"
}
testCompile("net.md-5:bungeecord-api:${version_bungeecord}-SNAPSHOT") {
exclude group: "org.yaml"
}
}
apply from: 'gradle/parts.gradle'