forked from albfan/jmeld
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
50 lines (43 loc) · 1.15 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
apply plugin: 'java'
apply plugin: 'jacoco'
apply plugin: 'com.github.kt3k.coveralls'
apply plugin: 'com.github.johnrengelman.shadow'
version = '3.3'
repositories {
mavenCentral()
maven { url "http://central.maven.org/maven2" }
}
buildscript {
repositories {
mavenCentral()
jcenter()
}
dependencies {
classpath 'org.kt3k.gradle.plugin:coveralls-gradle-plugin:2.0.1'
classpath 'com.github.jengelman.gradle.plugins:shadow:1.2.3'
}
}
jar {
manifest {
attributes 'Main-Class': 'org.jmeld.JMeld'
}
}
dependencies {
compile 'com.jgoodies:forms:1.0.7'
compile 'com.jgoodies:looks:2.2.1'
compile 'org.mod4j.com.ibm:icu:4.0.1'
compile 'javax.help:javahelp:2.0.05'
compile 'eu.medsea.mimeutil:mime-util:2.1.3'
compile 'com.l2fprod.common:l2fprod-common-fontchooser:6.9.1'
compile 'com.jidesoft:jide-oss:3.6.18'
compile 'org.swinglabs:swing-layout:1.0.3'
compile 'org.swinglabs:swingx:1.6.1'
testCompile 'junit:junit:4.8.2'
testCompile 'org.netbeans:jemmy:2.2.7.5'
}
jacocoTestReport {
reports {
xml.enabled = true // coveralls plugin depends on xml format report
html.enabled = true
}
}