-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.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: 'sonar-runner'
apply plugin: 'jacoco'
sourceCompatibility = 1.6
version = '3.3b'
test {
jacoco {
append = false
destinationFile = file("$buildDir/jacoco/jacocoTest.exec")
classDumpFile = file("$buildDir/jacoco/classpathdumps")
}
}
jacocoTestReport {
reports {
xml.enabled false
csv.enabled false
html.destination "${buildDir}/jacocoHtml"
}
}
sonarRunner {
sonarProperties {
property 'sonar.jdbc.url', 'jdbc:mysql://localhost:3306/sonar?useUnicode=true&characterEncoding=utf8&rewriteBatchedStatements=true'
property 'sonar.jdbc.driverClassName', 'com.mysql.jdbc.Driver'
property 'sonar.projectVersion', "${version}"
}
}
repositories {
mavenCentral()
flatDir {
dirs 'lib'
}
}
dependencies {
compile name: 'ostermillerutils_1_03_00'
compile name: 'jnlp'
compile name: 'jflac-1.2'
compile name: 'nativeskin'
compile name: 'nativeskinlib'
compile name: 'jsch-20040429'
compile name: 'log4j-1.2.8'
compile name: 'vorbisspi1.0.2'
testCompile group: 'junit', name: 'junit', version: '4.11'
}