-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
44 lines (36 loc) · 1.04 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
group = 'com.aestasit.infrastructure.mock'
version = '0.4-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 'org.slf4j:slf4j-api:1.7.2'
compile 'commons-io:commons-io:1.4'
compile 'org.apache.sshd:apache-sshd:0.7.0'
compile 'com.jcraft:jsch:0.1.49'
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 = '2.1'
}