Merge pull request #156 from Codearte/feature/wiremock_2.0.5-beta
wiremock update to 2.0.5-beta
This commit is contained in:
@@ -30,7 +30,7 @@ class AccurestGradlePlugin implements Plugin<Project> {
|
||||
createGenerateTestsTask(extension)
|
||||
createAndConfigureGenerateWireMockClientStubsFromDslTask(extension)
|
||||
deprecatedCreateAndConfigureGenerateWiremockClientStubsFromDslTask()
|
||||
project.dependencies.add("testCompile", "com.github.tomakehurst:wiremock:2.0.4-beta")
|
||||
project.dependencies.add("testCompile", "com.github.tomakehurst:wiremock:2.0.5-beta")
|
||||
|
||||
project.afterEvaluate {
|
||||
def hasIdea = project.plugins.findPlugin(IDEA_PLUGIN_CLASS)
|
||||
|
||||
@@ -34,17 +34,14 @@ repositories {
|
||||
dependencies {
|
||||
compile "org.springframework:spring-web:$springVersion"
|
||||
compile "org.springframework:spring-context-support:$springVersion"
|
||||
compile "org.codehaus.groovy:groovy-all:2.4.4"
|
||||
compile "org.codehaus.groovy:groovy-all:2.4.5"
|
||||
compile 'com.fasterxml.jackson.core:jackson-databind:2.4.4'
|
||||
compile "org.codehaus.jackson:jackson-mapper-asl:$jacksonMapper"
|
||||
compile "org.codehaus.jackson:jackson-core-asl:$jacksonMapper"
|
||||
compile 'com.jayway.jsonpath:json-path-assert:2.0.0'
|
||||
|
||||
testCompile "com.github.tomakehurst:wiremock:2.0.4-beta"
|
||||
testCompile "com.github.tomakehurst:wiremock:2.0.5-beta"
|
||||
testCompile "org.spockframework:spock-spring:1.0-groovy-2.4"
|
||||
testCompile "com.jayway.restassured:rest-assured:$restAssuredVersion"
|
||||
testCompile "com.jayway.restassured:spring-mock-mvc:$restAssuredVersion"
|
||||
testCompile 'javax.servlet:javax.servlet-api:3.1.0'
|
||||
testCompile "ch.qos.logback:logback-classic:1.1.2"
|
||||
}
|
||||
|
||||
|
||||
@@ -4,13 +4,14 @@ buildscript {
|
||||
mavenCentral()
|
||||
}
|
||||
dependencies {
|
||||
classpath "org.springframework.boot:spring-boot-gradle-plugin:1.2.1.RELEASE"
|
||||
classpath "org.springframework.boot:spring-boot-gradle-plugin:1.2.6.RELEASE"
|
||||
}
|
||||
}
|
||||
|
||||
ext {
|
||||
restAssuredVersion = '2.4.0'
|
||||
restAssuredVersion = '2.5.0'
|
||||
spockVersion = '1.0-groovy-2.4'
|
||||
wiremockVersion = '2.0.5-beta'
|
||||
|
||||
accurestStubsBaseDirectory = 'src/test/resources/stubs'
|
||||
}
|
||||
@@ -24,10 +25,10 @@ subprojects {
|
||||
}
|
||||
|
||||
dependencies {
|
||||
testCompile 'org.codehaus.groovy:groovy-all:2.4.4'
|
||||
testCompile 'org.codehaus.groovy:groovy-all:2.4.5'
|
||||
testCompile "org.spockframework:spock-core:$spockVersion"
|
||||
testCompile 'junit:junit:4.12'
|
||||
testCompile 'com.github.tomakehurst:wiremock:2.0.4-beta'
|
||||
testCompile "com.github.tomakehurst:wiremock:$wiremockVersion"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -53,18 +54,19 @@ configure([project(':fraudDetectionService'), project(':loanApplicationService')
|
||||
version = '0.0.1'
|
||||
}
|
||||
|
||||
configurations {
|
||||
compile.exclude module: "spring-boot-starter-tomcat"
|
||||
}
|
||||
|
||||
dependencies {
|
||||
compile "javax.ws.rs:javax.ws.rs-api:2.0.1"
|
||||
compile 'org.glassfish.jersey.containers:jersey-container-jetty-http:2.15'
|
||||
compile('org.springframework.boot:spring-boot-starter-jersey:1.2.6.RELEASE') {
|
||||
exclude module: "spring-boot-starter-tomcat"
|
||||
}
|
||||
compile 'org.springframework.boot:spring-boot-starter-jetty:1.2.6.RELEASE'
|
||||
compile 'org.springframework.boot:spring-boot-starter-jersey'
|
||||
compile 'org.springframework.boot:spring-boot-starter-jetty'
|
||||
|
||||
testRuntime "org.spockframework:spock-spring:$spockVersion"
|
||||
|
||||
compile 'org.glassfish.jersey.connectors:jersey-apache-connector:2.15'
|
||||
testCompile 'org.springframework:spring-test:4.1.7.RELEASE'
|
||||
testCompile 'org.springframework:spring-test'
|
||||
}
|
||||
|
||||
task cleanup(type: Delete) {
|
||||
|
||||
@@ -4,13 +4,14 @@ buildscript {
|
||||
mavenLocal()
|
||||
}
|
||||
dependencies {
|
||||
classpath("org.springframework.boot:spring-boot-gradle-plugin:1.2.1.RELEASE")
|
||||
classpath("org.springframework.boot:spring-boot-gradle-plugin:1.2.6.RELEASE")
|
||||
}
|
||||
}
|
||||
|
||||
ext {
|
||||
restAssuredVersion = '2.4.0'
|
||||
restAssuredVersion = '2.5.0'
|
||||
spockVersion = '1.0-groovy-2.4'
|
||||
wiremockVersion = '2.0.5-beta'
|
||||
|
||||
accurestStubsBaseDirectory = 'src/test/resources/stubs'
|
||||
}
|
||||
@@ -24,10 +25,10 @@ subprojects {
|
||||
}
|
||||
|
||||
dependencies {
|
||||
testCompile "org.codehaus.groovy:groovy-all:2.4.4"
|
||||
testCompile "org.codehaus.groovy:groovy-all:2.4.5"
|
||||
testCompile "org.spockframework:spock-core:$spockVersion"
|
||||
testCompile("junit:junit:4.12")
|
||||
testCompile "com.github.tomakehurst:wiremock:2.0.4-beta"
|
||||
testCompile "com.github.tomakehurst:wiremock:$wiremockVersion"
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
nexusUsername =
|
||||
nexusPassword =
|
||||
|
||||
wiremockVersion = 2.0.4-beta
|
||||
wiremockVersion = 2.0.5-beta
|
||||
|
||||
Reference in New Issue
Block a user