-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
61 lines (51 loc) · 1.46 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
buildscript {
repositories {
mavenCentral()
maven { url 'http://oss.sonatype.org/content/repositories/snapshots/' }
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath('org.codehaus.groovy:groovy-all:2.4.7')
}
}
apply plugin: 'groovy'
apply plugin: 'idea'
//apply plugin: 'info.solidsoft.pitest'
jar {
baseName = 'RangeMap'
version = '0.0.1-SNAPSHOT'
}
repositories {
mavenCentral()
}
dependencies {
compile(
'org.codehaus.groovy:groovy-all:2.4.7',
'com.google.guava:guava:21.0',
'com.jayway.jsonpath:json-path:2.2.0',
'com.amazonaws:aws-lambda-java-core:1.1.0',
'com.amazonaws:aws-lambda-java-log4j:1.0.0',
'com.fasterxml.jackson.core:jackson-core:2.8.5',
'com.fasterxml.jackson.core:jackson-databind:2.8.5',
'com.fasterxml.jackson.core:jackson-annotations:2.8.5'
)
testCompile(
'junit:junit:4.12',
'org.codehaus.groovy:groovy-all:2.4.4',
'org.spockframework:spock-core:1.0-groovy-2.4',
'org.assertj:assertj-core:3.6.2',
'com.github.tomakehurst:wiremock-standalone:2.5.1',
'cglib:cglib-nodep:3.2.4'
)
}
task buildZip(type: Zip) {
baseName = "java-with-spring"
from compileJava
from processResources
into('lib') {
from configurations.runtime
}
}
build.dependsOn buildZip