-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
35 lines (30 loc) · 907 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
buildscript {
//noinspection GroovyAssignabilityCheck
dependencies {
classpath group: 'de.dynamicfiles.projects.gradle.plugins', name: 'javafx-gradle-plugin', version: '8.8.2'
}
repositories {
mavenLocal()
mavenCentral()
}
}
apply plugin: 'java'
repositories {
mavenLocal()
mavenCentral()
}
apply plugin: 'javafx-gradle-plugin'
jfx {
mainClass = 'tech.qoden.app.BitstampSample'
vendor = 'Qoden Technologies'
runJavaParameter = "-Dorg.slf4j.simpleLogger.defaultLogLevel=debug"
}
//noinspection GroovyAssignabilityCheck
dependencies {
compile 'com.pusher:pusher-http-java:1.0.0'
compile 'com.pusher:pusher-java-client:1.5.0'
compile group: 'org.slf4j', name: 'slf4j-simple', version: '1.7.25'
compile "io.vavr:vavr:0.9.0"
compile "one.util:streamex:0.6.5"
testCompile group: 'junit', name: 'junit', version: '4.12'
}