Skip to content

Commit 8b41515

Browse files
committed
Upgraded master to use Boot 2.3.0.M4
1 parent aba70b4 commit 8b41515

File tree

13 files changed

+21
-20
lines changed

13 files changed

+21
-20
lines changed

pom.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>org.springframework.cloud</groupId>
77
<artifactId>spring-cloud-build</artifactId>
8-
<version>2.2.2.BUILD-SNAPSHOT</version>
8+
<version>2.3.0.BUILD-SNAPSHOT</version>
99
<relativePath />
1010
</parent>
1111

@@ -109,11 +109,11 @@
109109
</modules>
110110

111111
<properties>
112-
<spring-cloud-stream.version>3.0.2.BUILD-SNAPSHOT</spring-cloud-stream.version>
113-
<spring-cloud-deployer.version>2.1.1.BUILD-SNAPSHOT</spring-cloud-deployer.version>
114-
<spring-cloud-deployer-local.version>2.1.1.BUILD-SNAPSHOT
112+
<spring-cloud-stream.version>3.1.0.BUILD-SNAPSHOT</spring-cloud-stream.version>
113+
<spring-cloud-deployer.version>2.3.0.BUILD-SNAPSHOT</spring-cloud-deployer.version>
114+
<spring-cloud-deployer-local.version>2.3.0.BUILD-SNAPSHOT
115115
</spring-cloud-deployer-local.version>
116-
<spring-cloud-stream-binder-rabbit.version>3.0.2.BUILD-SNAPSHOT
116+
<spring-cloud-stream-binder-rabbit.version>3.1.0.BUILD-SNAPSHOT
117117
</spring-cloud-stream-binder-rabbit.version>
118118
<commons-logging.version>1.1</commons-logging.version>
119119
<java-ee-api.version>8.0</java-ee-api.version>

spring-cloud-task-batch/src/test/java/org/springframework/cloud/task/batch/configuration/TaskJobLauncherAutoConfigurationTests.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
import org.junit.Test;
2020

2121
import org.springframework.boot.autoconfigure.batch.BatchAutoConfiguration;
22+
import org.springframework.boot.autoconfigure.batch.JobLauncherApplicationRunner;
2223
import org.springframework.boot.autoconfigure.batch.JobLauncherCommandLineRunner;
2324
import org.springframework.boot.autoconfigure.context.PropertyPlaceholderAutoConfiguration;
2425
import org.springframework.boot.autoconfigure.jdbc.EmbeddedDataSourceConfiguration;
@@ -98,7 +99,7 @@ private void validateJobNames(AssertableApplicationContext context, String jobNa
9899
@Test
99100
public void testAutoBuiltDataSourceWithTaskJobLauncherCLRDisabled() {
100101
this.contextRunner.run(context -> {
101-
assertThat(context).hasSingleBean(JobLauncherCommandLineRunner.class);
102+
assertThat(context).hasSingleBean(JobLauncherApplicationRunner.class);
102103
assertThat(context).doesNotHaveBean(TaskJobLauncherCommandLineRunner.class);
103104
});
104105
}

spring-cloud-task-batch/src/test/java/org/springframework/cloud/task/batch/handler/TaskJobLauncherCommandLineRunnerTests.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
import org.springframework.boot.SpringApplication;
4444
import org.springframework.boot.autoconfigure.ImportAutoConfiguration;
4545
import org.springframework.boot.autoconfigure.batch.BatchAutoConfiguration;
46-
import org.springframework.boot.autoconfigure.batch.JobLauncherCommandLineRunner;
46+
import org.springframework.boot.autoconfigure.batch.JobLauncherApplicationRunner;
4747
import org.springframework.boot.autoconfigure.context.PropertyPlaceholderAutoConfiguration;
4848
import org.springframework.boot.autoconfigure.jdbc.EmbeddedDataSourceConfiguration;
4949
import org.springframework.cloud.task.batch.configuration.TaskBatchAutoConfiguration;
@@ -152,7 +152,7 @@ public void testCommandLineRunnerSetToFalse() {
152152
TaskJobLauncherCommandLineRunnerTests.JobConfiguration.class },
153153
enabledArgs);
154154
validateContext();
155-
assertThat(this.applicationContext.getBean(JobLauncherCommandLineRunner.class))
155+
assertThat(this.applicationContext.getBean(JobLauncherApplicationRunner.class))
156156
.isNotNull();
157157

158158
Executable executable = () -> this.applicationContext

spring-cloud-task-dependencies/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<parent>
1111
<artifactId>spring-cloud-dependencies-parent</artifactId>
1212
<groupId>org.springframework.cloud</groupId>
13-
<version>2.2.2.BUILD-SNAPSHOT</version>
13+
<version>2.3.0.BUILD-SNAPSHOT</version>
1414
<relativePath />
1515
</parent>
1616

spring-cloud-task-samples/batch-events/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<parent>
1414
<groupId>org.springframework.boot</groupId>
1515
<artifactId>spring-boot-starter-parent</artifactId>
16-
<version>2.2.2.BUILD-SNAPSHOT</version>
16+
<version>2.3.0.M4</version>
1717
<relativePath />
1818
</parent>
1919

@@ -64,7 +64,7 @@
6464
<dependency>
6565
<groupId>org.springframework.cloud</groupId>
6666
<artifactId>spring-cloud-stream-test-support-internal</artifactId>
67-
<version>3.0.2.BUILD-SNAPSHOT</version>
67+
<version>3.1.0.BUILD-SNAPSHOT</version>
6868
<scope>test</scope>
6969
</dependency>
7070
<dependency>

spring-cloud-task-samples/batch-job/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<parent>
1414
<groupId>org.springframework.boot</groupId>
1515
<artifactId>spring-boot-starter-parent</artifactId>
16-
<version>2.2.2.BUILD-SNAPSHOT</version>
16+
<version>2.3.0.M4</version>
1717
<relativePath />
1818
</parent>
1919

spring-cloud-task-samples/jpa-sample/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<parent>
1414
<groupId>org.springframework.boot</groupId>
1515
<artifactId>spring-boot-starter-parent</artifactId>
16-
<version>2.2.2.BUILD-SNAPSHOT</version>
16+
<version>2.3.0.M4</version>
1717
<relativePath />
1818
</parent>
1919

spring-cloud-task-samples/multiple-datasources/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<parent>
1515
<groupId>org.springframework.boot</groupId>
1616
<artifactId>spring-boot-starter-parent</artifactId>
17-
<version>2.2.2.BUILD-SNAPSHOT</version>
17+
<version>2.3.0.M4</version>
1818
<relativePath />
1919
</parent>
2020

spring-cloud-task-samples/partitioned-batch-job/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<parent>
1313
<groupId>org.springframework.boot</groupId>
1414
<artifactId>spring-boot-starter-parent</artifactId>
15-
<version>2.2.2.BUILD-SNAPSHOT</version>
15+
<version>2.3.0.M4</version>
1616
<relativePath />
1717
</parent>
1818

@@ -52,7 +52,7 @@
5252
<dependency>
5353
<groupId>org.springframework.cloud</groupId>
5454
<artifactId>spring-cloud-deployer-local</artifactId>
55-
<version>2.1.1.BUILD-SNAPSHOT</version>
55+
<version>2.3.0.BUILD-SNAPSHOT</version>
5656
</dependency>
5757

5858
<dependency>

spring-cloud-task-samples/task-events/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<parent>
1414
<groupId>org.springframework.boot</groupId>
1515
<artifactId>spring-boot-starter-parent</artifactId>
16-
<version>2.2.2.BUILD-SNAPSHOT</version>
16+
<version>2.3.0.M4</version>
1717
<relativePath />
1818
</parent>
1919

0 commit comments

Comments
 (0)