forked from NareshGuru77/project-pieceofcake
-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
54 lines (40 loc) · 1.04 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
45
46
47
48
49
50
51
52
53
import org.gradle.plugins.ide.eclipse.model.AccessRule
plugins {
id "org.sonarqube" version "2.6.1"
}
apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'application'
apply plugin: 'jacoco'
mainClassName = 'org.pieceofcake.gui.main.StartGUI'
sourceCompatibility = 1.8
targetCompatibility = 1.8
repositories {
mavenCentral()
maven {
url 'http://repo1.maven.org/maven2'
}
maven {
url 'http://jade.tilab.com/maven/'
}
}
eclipse {
classpath {
file {
whenMerged {
def jre = entries.find { it.path.contains 'org.eclipse.jdt.launching.JRE_CONTAINER' }
jre.accessRules.add(new AccessRule('0', 'javafx/**'))
}
}
}
}
jacoco {
toolVersion = "0.7.9"
}
dependencies {
compile group: 'com.tilab.jade', name: 'jade', version: '4.5.+'
compile group: 'org.json', name: 'json', version: '20171018'
testCompile 'junit:junit:4.12'
//compile 'junit:junit:4.12'
//testCompile 'org.mockito:mockito-core:1.10.+'
}