forked from migzai/irc-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
43 lines (35 loc) · 887 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
37
38
39
40
41
42
43
plugins {
id 'jacoco'
id 'com.github.kt3k.coveralls' version '2.6.3'
}
apply plugin: 'java'
apply plugin: 'idea'
sourceCompatibility = 1.7
targetCompatibility = 1.7
version = '1.0'
group = 'com.ircclouds.irc'
version = '1.0-0015-SNAPSHOT'
description = 'IRC API in Java'
repositories {
mavenCentral()
}
task copyTestResources(type: Copy) {
from "${projectDir}/src/test/resources"
into "${buildDir}/classes/test"
}
processTestResources.dependsOn copyTestResources
dependencies {
testCompile 'org.jmockit:jmockit:1.26'
testCompile 'junit:junit:4.12'
testCompile 'org.slf4j:slf4j-simple:1.7.21'
compile 'net.engio:mbassador:1.2.4.2'
compile 'commons-codec:commons-codec:1.4'
compile 'org.slf4j:slf4j-api:1.7.21'
}
jacocoTestReport {
reports {
xml.enabled true
html.enabled true
}
}
check.dependsOn jacocoTestReport