forked from codeborne/gt-engine
-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.gradle
48 lines (39 loc) · 1.07 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
plugins {
id 'java-library'
id 'eclipse'
}
eclipse {
classpath {
downloadJavadoc = true
downloadSources = true
}
}
defaultTasks 'test', 'jar'
group='com.codeborne'
archivesBaseName = 'gt-engine'
version='1.2'
dependencies {
// compile fileTree(dir: "jars", include: '*.jar')
implementation 'org.codehaus.groovy:groovy:2.5.13'
implementation 'commons-collections:commons-collections:3.2.2'
implementation 'commons-io:commons-io:2.8.0'
implementation 'org.apache.commons:commons-lang3:3.11'
implementation 'org.eclipse.jdt:org.eclipse.jdt.core:3.23.0'
testImplementation 'org.apache.commons:commons-text:1.9'
testImplementation 'org.easytesting:fest-assert:1.4'
testImplementation 'com.novocode:junit-interface:0.11'
}
compileJava {
options.debugOptions.debugLevel = "source,lines,vars"
options.encoding = 'UTF-8'
}
repositories {
mavenCentral()
}
task libs(type: Sync) {
from configurations.compileClasspath
from configurations.runtimeClasspath
from configurations.testRuntimeClasspath
into "$buildDir/lib"
}
compileJava.dependsOn libs