forked from LunaBulnesCMP/WiremockDynamicStubs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
35 lines (24 loc) · 853 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
group 'com.cmp.wiremock.extension'
version '1.0-SNAPSHOT'
apply plugin: 'java'
sourceCompatibility = 1.8
repositories {
mavenCentral()
}
dependencies {
testCompile group: 'junit', name: 'junit', version: '4.11'
compile "com.github.tomakehurst:wiremock:2.5.1"
compile 'com.jayway.restassured:rest-assured:2.4.0'
compile 'com.jayway.restassured:json-schema-validator:2.4.0'
compile 'org.json:json:20160212'
compile group: 'com.github.javafaker', name: 'javafaker', version: '0.13'
}
jar {
baseName = 'wiremockDynamicStubs'
version = '0.1.0'
manifest {
attributes 'Class-Path': configurations.runtime.files.collect { "lib/$it.name" }.join(' '),
'Implementation-Version': project.version
}
from(configurations.compile.collect { it.isDirectory() ? it : zipTree(it) })
}