No snapshots in guides; fixes gh-1239
This commit is contained in:
@@ -11,7 +11,7 @@
|
||||
<parent>
|
||||
<groupId>org.springframework.boot</groupId>
|
||||
<artifactId>spring-boot-starter-parent</artifactId>
|
||||
<version>2.2.0.RC1</version>
|
||||
<version>2.2.0.RELEASE</version>
|
||||
<relativePath/> <!-- lookup parent from repository -->
|
||||
</parent>
|
||||
|
||||
|
||||
@@ -17,7 +17,7 @@ public class ContractRestClientApplicationTest {
|
||||
|
||||
@Rule
|
||||
public StubRunnerRule stubRunnerRule = new StubRunnerRule()
|
||||
.downloadStub("com.example", "contract-rest-service", "0.0.1-SNAPSHOT", "stubs")
|
||||
.downloadStub("com.example", "contract-rest-service", "0.0.1", "stubs")
|
||||
.withPort(8100)
|
||||
.stubsMode(StubRunnerProperties.StubsMode.LOCAL);
|
||||
|
||||
|
||||
@@ -11,7 +11,7 @@
|
||||
<parent>
|
||||
<groupId>org.springframework.boot</groupId>
|
||||
<artifactId>spring-boot-starter-parent</artifactId>
|
||||
<version>2.2.0.RC1</version>
|
||||
<version>2.2.0.RELEASE</version>
|
||||
<relativePath /> <!-- lookup parent from repository -->
|
||||
</parent>
|
||||
|
||||
|
||||
@@ -11,7 +11,7 @@
|
||||
<parent>
|
||||
<groupId>org.springframework.boot</groupId>
|
||||
<artifactId>spring-boot-starter-parent</artifactId>
|
||||
<version>2.2.0.RC1</version>
|
||||
<version>2.2.0.RELEASE</version>
|
||||
<relativePath/> <!-- lookup parent from repository -->
|
||||
</parent>
|
||||
|
||||
|
||||
@@ -15,7 +15,7 @@ import org.springframework.web.client.RestTemplate;
|
||||
@RunWith(SpringRunner.class)
|
||||
@SpringBootTest
|
||||
@AutoConfigureStubRunner(
|
||||
ids = "com.example:contract-rest-service:0.0.1-SNAPSHOT:stubs:8100",
|
||||
ids = "com.example:contract-rest-service:0.0.1:stubs:8100",
|
||||
stubsMode = StubRunnerProperties.StubsMode.LOCAL
|
||||
)
|
||||
public class ContractRestClientApplicationTest {
|
||||
|
||||
@@ -11,7 +11,7 @@
|
||||
<parent>
|
||||
<groupId>org.springframework.boot</groupId>
|
||||
<artifactId>spring-boot-starter-parent</artifactId>
|
||||
<version>2.2.0.RC1</version>
|
||||
<version>2.2.0.RELEASE</version>
|
||||
<relativePath /> <!-- lookup parent from repository -->
|
||||
</parent>
|
||||
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
<groupId>org.springframework.guide</groupId>
|
||||
<artifactId>spring-guides</artifactId>
|
||||
<version>1.0.0.BUILD-SNAPSHOT</version>
|
||||
<version>1.0.0</version>
|
||||
<packaging>pom</packaging>
|
||||
<name>Spring Guides</name>
|
||||
<description>Spring Guides</description>
|
||||
|
||||
@@ -9,7 +9,7 @@ export MAVEN_OPTS="${GUIDES_MAVEN_SYSTEM_PROPERTIES}"
|
||||
export GRADLE_OPTS="${GUIDES_GRADLE_SYSTEM_PROPERTIES}"
|
||||
export JAVA_TOOL_OPTIONS="${MAVEN_OPTS}"
|
||||
|
||||
cd $(dirname $0)
|
||||
cd "$(dirname $0)"
|
||||
|
||||
cd ../complete
|
||||
|
||||
|
||||
Reference in New Issue
Block a user