-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathbuild.gradle
36 lines (28 loc) · 946 Bytes
/
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
apply plugin: 'java'
[compileJava, compileTestJava]*.options*.encoding = 'UTF-8'
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath 'net.saliman:gradle-cobertura-plugin:2.0.0' // cobertura plugin
classpath 'org.kt3k.gradle.plugin:coveralls-gradle-plugin:2.3.1'
}
}
apply from: 'gradle/byoutline/javaLib.gradle'
repositories {
mavenCentral()
maven { url "http://oss.sonatype.org/content/repositories/snapshots/" }
}
dependencies {
compile 'org.simpleframework:simple:5.1.6'
compile 'org.apache.httpcomponents:httpclient:4.4.1'
compile 'com.google.code.findbugs:jsr305:3.0.0'
compile 'org.json:json:20140107'
testCompile group: 'junit', name: 'junit', version: '4.10'
testCompile 'org.mockito:mockito-core:1.9.5'
testCompile 'org.assertj:assertj-core:1.7.1'
}
apply from: 'maven-push.gradle'