Bumping versions before release

This commit is contained in:
Marcin Grzejszczak
2017-01-30 11:41:56 +01:00
parent c2a8bb8cb7
commit dfceed2ce1
75 changed files with 138 additions and 123 deletions

View File

@@ -5,14 +5,17 @@ buildscript {
maven { url "http://repo.spring.io/libs-snapshot-local" }
maven { url "http://repo.spring.io/libs-release-local" }
maven { url "http://repo.spring.io/libs-staging-local" }
maven { url 'http://repo.spring.io/plugins-snapshot' }
maven { url "http://repo.spring.io/plugins-release-local" }
maven { url "http://repo.spring.io/plugins-staging-local/" }
}
dependencies {
classpath "org.springframework.boot:spring-boot-gradle-plugin:1.5.0.BUILD-SNAPSHOT"
classpath "org.springframework.boot:spring-boot-gradle-plugin:1.5.0.RC1"
}
}
group = 'com.example'
version = '0.0.1-SNAPSHOT'
version = '0.0.1.M1'
repositories {
mavenCentral()
@@ -39,7 +42,7 @@ dependencies {
testCompile 'org.springframework.cloud:spring-cloud-contract-wiremock'
testCompile "org.springframework.boot:spring-boot-starter-test"
testCompile "com.example:http-server-restdocs:0.0.1-SNAPSHOT:stubs"
testCompile "com.example:http-server-restdocs:0.0.1.M1:stubs"
}
test {

View File

@@ -1,3 +1,3 @@
org.gradle.daemon=false
verifierVersion=1.1.0.BUILD-SNAPSHOT
verifierVersion=1.1.0.M1
BOM_VERSION=Dalston.BUILD-SNAPSHOT

View File

@@ -5,7 +5,7 @@
<groupId>com.example</groupId>
<artifactId>http-client-restdocs</artifactId>
<version>0.0.1-SNAPSHOT</version>
<version>0.0.1.M1</version>
<name>Spring Cloud Contract RestDocs Http Client Sample</name>
<description>Spring Cloud Contract RestDocs Http Client Sample</description>
@@ -13,14 +13,14 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>1.5.0.BUILD-SNAPSHOT</version>
<version>1.5.0.RC1</version>
<relativePath />
</parent>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<java.version>1.8</java.version>
<spring-cloud-contract.version>1.1.0.BUILD-SNAPSHOT</spring-cloud-contract.version>
<spring-cloud-contract.version>1.1.0.M1</spring-cloud-contract.version>
</properties>
<dependencies>
@@ -48,7 +48,7 @@
<groupId>com.example</groupId>
<artifactId>http-server-restdocs</artifactId>
<classifier>stubs</classifier>
<version>0.0.1-SNAPSHOT</version>
<version>0.0.1.M1</version>
<scope>test</scope>
<exclusions>
<exclusion>

View File

@@ -29,10 +29,10 @@ public class LoanApplicationServiceTests {
@Autowired
private LoanApplicationService service;
@Value("classpath:META-INF/com.example/http-server-restdocs/0.0.1-SNAPSHOT/mappings/markClientAsFraud.json")
@Value("classpath:META-INF/com.example/http-server-restdocs/0.0.1.M1/mappings/markClientAsFraud.json")
private Resource markClientAsFraud;
@Value("classpath:META-INF/com.example/http-server-restdocs/0.0.1-SNAPSHOT/mappings/markClientAsNotFraud.json")
@Value("classpath:META-INF/com.example/http-server-restdocs/0.0.1.M1/mappings/markClientAsNotFraud.json")
private Resource markClientAsNotFraud;
@Autowired