-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
42 lines (34 loc) · 956 Bytes
/
build.gradle
File metadata and controls
42 lines (34 loc) · 956 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
39
40
41
42
group = 'com.aestasit.gradle'
version = '0.1-SNAPSHOT'
buildscript {
repositories { mavenCentral() }
dependencies { classpath 'net.saliman:gradle-cobertura-plugin:2.2.4' }
dependencies { classpath 'org.ajoberstar:gradle-git:0.8.0' }
}
apply plugin: 'groovy'
apply plugin: 'maven'
apply plugin: 'idea'
apply plugin: 'eclipse'
apply plugin: 'cobertura'
apply plugin: 'github-pages'
apply from: 'repos.gradle'
apply from: 'sonar.gradle'
apply from: 'docs.gradle'
sourceCompatibility = '1.6'
targetCompatibility = '1.6'
dependencies {
compile localGroovy()
compile gradleApi()
testCompile 'commons-io:commons-io:1.4'
testCompile 'junit:junit:4.11'
testRuntime 'ch.qos.logback:logback-core:1.1.2'
testRuntime 'ch.qos.logback:logback-classic:1.1.2'
}
configurations {
all*.exclude group: 'commons-logging'
all*.exclude group: 'log4j'
all*.exclude module: 'slf4j-simple'
}
task wrapper(type: Wrapper) {
gradleVersion = '1.8'
}