Fixing gradle project versions

This commit is contained in:
Marcin Grzejszczak
2017-08-30 14:21:28 +02:00
parent de62368f8f
commit 0759cb2d4a
4 changed files with 7 additions and 7 deletions

View File

@@ -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'

View File

@@ -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'
}
}

View File

@@ -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/"

View File

@@ -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")
}
}