-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
40 lines (33 loc) · 912 Bytes
/
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
// Apply the java plugin to add support for Java
apply plugin: 'java'
// In this section you declare where to find the dependencies of your project
repositories {
mavenCentral()
jcenter()
maven { url 'https://jitpack.io' }
}
dependencies {
// https://mvnrepository.com/artifact/com.google.code.gson/gson
compile group: 'com.google.code.gson', name: 'gson', version: '2.8.0'
// https://mvnrepository.com/artifact/uk.co.xfactory-librarians/coremidi4j
compile group: 'uk.co.xfactory-librarians', name: 'coremidi4j', version: '0.9'
// https://github.com/SymmetryLabs/ArtNetStack
implementation 'com.github.SymmetryLabs:ArtNetStack:44ddfed'
testCompile 'junit:junit:4.12'
}
jar {
exclude('**/*.swp')
exclude('**/*.swo')
}
sourceSets {
main {
java {
srcDirs 'src'
}
}
test {
java {
srcDirs 'test'
}
}
}