-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.gradle
More file actions
70 lines (58 loc) · 1.69 KB
/
build.gradle
File metadata and controls
70 lines (58 loc) · 1.69 KB
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
apply plugin: 'idea'
apply plugin: 'eclipse'
apply plugin: 'cobertura'
apply plugin: 'com.github.kt3k.coveralls'
buildscript {
repositories {
jcenter()
mavenCentral()
}
dependencies {
classpath "net.saliman:gradle-cobertura-plugin:2.2.4"
classpath 'org.kt3k.gradle.plugin:coveralls-gradle-plugin:2.0.0'
classpath 'org.gradle.api.plugins:gradle-nexus-plugin:0.7.1'
classpath 'com.ofg:uptodate-gradle-plugin:1.1.0'
}
}
task wrapper(type: Wrapper) {
gradleVersion = '2.4'
}
def javaProjects = [ project(':scheelite-core'), project(':scheelite-diagram'), project(':scheelite-samples-calculator') ]
def javaReleaseProjects = [ project(':scheelite-core'), project(':scheelite-diagram') ]
configure(javaProjects) {
apply from: "$rootDir/gradle/javaprojects.gradle"
apply plugin: 'com.ofg.uptodate'
}
configure(javaReleaseProjects) {
apply from: "$rootDir/gradle/archive.gradle"
apply from: "$rootDir/gradle/cobertura.gradle"
}
allprojects {
repositories {
mavenCentral()
}
}
idea {
project {
jdkName = '1.7'
languageLevel = '1.6'
}
}
def childTestTasks = []
def coverageDatafiles = []
def testSourceDirs = []
javaReleaseProjects.each {
coverageDatafiles << it.file("build/cobertura/cobertura.ser")
childTestTasks << "${it.name}:test"
testSourceDirs << it.file("src/main/java").path
}
cobertura {
coverageMergeDatafiles = coverageDatafiles
coverageFormats = ['html', 'xml'] // coveralls plugin depends on xml format report
coverageSourceDirs = testSourceDirs
}
coveralls {
sourceDirs = testSourceDirs
}
// make sure this test task is run last
test.dependsOn(childTestTasks)