-
Notifications
You must be signed in to change notification settings - Fork 3
/
build.gradle
71 lines (56 loc) · 1.28 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
allprojects {
}
task wrapper(type: Wrapper) {
gradleVersion = '2.0'
}
subprojects {
apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'maven'
apply plugin: 'maven-publish'
eclipse {
classpath {
downloadSources=true
}
}
eclipse.classpath.defaultOutputDir = file( 'build/classes' )
group = 'com.neverwinterdp'
sourceCompatibility = 1.7
version = '1.0-SNAPSHOT'
configurations.compile.transitive = true
repositories {
mavenLocal()
mavenCentral()
}
dependencies {
compile group: 'org.slf4j', name: 'slf4j-api', version: '1.7.5'
compile group: 'org.slf4j', name: 'slf4j-log4j12', version: '1.7.5'
compile group: 'org.reflections', name: 'reflections', version: '0.9.9-RC1'
testCompile group: 'junit', name: 'junit', version: '4.11'
}
test {
forkEvery = 1
ignoreFailures = true
testLogging.showStandardStreams = true
filter {
includeTestsMatching "*UnitTest"
}
testLogging {
events "passed", "skipped", "failed"
}
}
task testJar(type: Jar) {
classifier = 'tests'
from sourceSets.test.output
}
configurations {
tests
published.extendsFrom tests, archives
}
install {
configuration = configurations.published
}
artifacts {
tests testJar
}
}