forked from SpectraLogic/ds3_java_browser
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
50 lines (42 loc) · 1.53 KB
/
build.gradle
File metadata and controls
50 lines (42 loc) · 1.53 KB
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
allprojects {
group = 'com.spectralogic.dsbrowser'
version = '2.1.0'
}
subprojects {
apply plugin: 'maven'
apply plugin: 'java'
sourceCompatibility = JavaVersion.VERSION_1_8
repositories {
maven {
url 'http://dl.bintray.com/spectralogic/ds3'
}
mavenCentral()
mavenLocal()
}
dependencies {
compile 'com.spectralogic.ds3:ds3-sdk:3.5.2'
compile 'com.spectralogic.ds3:ds3-metadata:3.4.0'
compile 'com.airhacks:afterburner.fx:1.7.0'
compile 'org.controlsfx:controlsfx:8.40.12'
compile 'de.jensd:fontawesomefx:8.9'
compile 'org.slf4j:slf4j-api:1.7.22'
compile 'ch.qos.logback:logback-classic:1.1.9'
compile 'ch.qos.logback:logback-core:1.1.9'
compile 'org.fxmisc.richtext:richtextfx:0.6.10'
compile 'net.java.dev.jna:jna-platform:4.2.2'
compile 'net.java.dev.jna:jna:4.2.2'
compile 'io.reactivex.rxjava2:rxjava:2.1.1'
compile 'io.reactivex.rxjava2:rxjavafx:2.1.1'
compile 'com.google.inject:guice:4.1.0'
compile 'com.google.inject.extensions:guice-assistedinject:4.1.0'
compile 'com.google.guava:guava:21.0'
testCompile('org.mockito:mockito-core:1.10.19') {
exclude group: 'org.hamcrest'// https://mvnrepository.com/artifact/net.java.dev.jna/jna
compile group: 'net.java.dev.jna', name: 'jna', version: '4.0.0'
}
testCompile 'junit:junit:4.12'
}
}
task wrapper(type: Wrapper) {
gradleVersion = '4.1'
}