-
Notifications
You must be signed in to change notification settings - Fork 19
/
build.gradle
29 lines (25 loc) · 938 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
plugins { id "org.sonarqube" version "2.6"
}
apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'application'
mainClassName = 'org.maas.Start'
sourceCompatibility = 1.8
targetCompatibility = 1.8
repositories {
mavenCentral()
maven {
url 'http://jade.tilab.com/maven/'
}
}
dependencies {
compile group: 'com.google.code.gson', name: 'gson', version: '2.7'
compile group: 'com.tilab.jade', name: 'jade', version: '4.5.+'
compile group: 'org.json', name: 'json', version: '20180813+'
compile group: 'org.openjfx', name: 'javafx', version: '12-ea+2'
compile group: 'com.google.code.gson', name: 'gson', version: '2.7'
compile group: 'com.fasterxml.jackson.core', name: 'jackson-core', version: '2.9.3'
compile group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.9.3'
//testCompile 'junit:junit:4.12.+'
//testCompile 'org.mockito:mockito-core:1.10.+'
}