-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
38 lines (31 loc) · 831 Bytes
/
build.gradle
File metadata and controls
38 lines (31 loc) · 831 Bytes
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
apply plugin: 'java'
apply plugin: 'application'
apply plugin: 'cobertura'
apply plugin: 'com.github.kt3k.coveralls'
sourceCompatibility = 1.7
targetCompatibility = 1.7
version = '1.0'
mainClassName = "fr.insalyon.optimod.Optimod"
repositories {
mavenCentral()
maven {
url "http://www.emn.fr/z-info/choco-repo/mvn/repository/"
}
}
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.11'
compile group: 'choco', name: 'choco-solver', version: '3.2.1'
}
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'net.saliman:gradle-cobertura-plugin:2.0.0'
classpath 'org.kt3k.gradle.plugin:coveralls-gradle-plugin:2.0.1'
}
}
cobertura.coverageFormats = ['html', 'xml']
task wrapper(type: Wrapper) {
gradleVersion = '2.0'
}