Fixing gradle project versions
This commit is contained in:
@@ -29,8 +29,8 @@ repositories {
|
||||
}
|
||||
|
||||
dependencies {
|
||||
compile "org.springframework:spring-web:5.0.0.RC2"
|
||||
compile "org.springframework:spring-context-support:5.0.0.RC2"
|
||||
compile "org.springframework:spring-web"
|
||||
compile "org.springframework:spring-context-support"
|
||||
compile "org.codehaus.groovy:groovy-all:2.5.0-beta-1"
|
||||
compile 'com.jayway.jsonpath:json-path-assert:2.2.0'
|
||||
|
||||
|
||||
@@ -23,7 +23,7 @@ buildscript {
|
||||
maven { url "http://repo.spring.io/release" }
|
||||
}
|
||||
dependencies {
|
||||
classpath("org.springframework.boot:spring-boot-gradle-plugin:2.0.0.BUILD-SNAPSHOT")
|
||||
classpath("org.springframework.boot:spring-boot-gradle-plugin:2.0.0.M3")
|
||||
}
|
||||
}
|
||||
|
||||
@@ -90,7 +90,7 @@ configure([project(':fraudDetectionService'), project(':loanApplicationService')
|
||||
testCompile "org.mockito:mockito-core"
|
||||
testCompile "org.springframework:spring-test"
|
||||
testCompile "org.springframework.boot:spring-boot-test"
|
||||
testCompile("com.github.tomakehurst:wiremock:2.7.1") {
|
||||
testCompile("com.github.tomakehurst:wiremock:${wiremockVersion}") {
|
||||
exclude group: 'org.eclipse.jetty'
|
||||
}
|
||||
}
|
||||
|
||||
@@ -23,7 +23,7 @@ buildscript {
|
||||
maven { url "http://repo.spring.io/release" }
|
||||
}
|
||||
dependencies {
|
||||
classpath("org.springframework.boot:spring-boot-gradle-plugin:2.0.0.BUILD-SNAPSHOT")
|
||||
classpath("org.springframework.boot:spring-boot-gradle-plugin:2.0.0.M3")
|
||||
}
|
||||
}
|
||||
|
||||
@@ -115,7 +115,7 @@ configure(project(':fraudDetectionService')) {
|
||||
|
||||
configure(project(':loanApplicationService')) {
|
||||
|
||||
task copyCollaboratorStubs(type: com.sun.org.apache.xalan.internal.xsltc.compiler.Copy) {
|
||||
task copyCollaboratorStubs(type: Copy) {
|
||||
File fraudBuildDir = project(':fraudDetectionService').buildDir
|
||||
from(new File(fraudBuildDir, "/production/${project(':fraudDetectionService').name}-stubs/"))
|
||||
into "src/test/resources/"
|
||||
|
||||
@@ -23,7 +23,7 @@ buildscript {
|
||||
maven { url "http://repo.spring.io/release" }
|
||||
}
|
||||
dependencies {
|
||||
classpath("org.springframework.boot:spring-boot-gradle-plugin:2.0.0.BUILD-SNAPSHOT")
|
||||
classpath("org.springframework.boot:spring-boot-gradle-plugin:2.0.0.M3")
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user