Skip to content
This repository was archived by the owner on Sep 1, 2023. It is now read-only.

Commit e70d063

Browse files
GH-29 - Update to Spring Boot 2.3.0.RELEASE.
1 parent b8453e7 commit e70d063

File tree

9 files changed

+11
-13
lines changed

9 files changed

+11
-13
lines changed

examples/dedicated-routing-driver/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<artifactId>spring-boot-starter-parent</artifactId>
66
<groupId>org.springframework.boot</groupId>
7-
<version>2.2.7.RELEASE</version>
7+
<version>2.3.0.RELEASE</version>
88
<relativePath></relativePath>
99
</parent>
1010

examples/embedded-bolt-connection/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<artifactId>spring-boot-starter-parent</artifactId>
66
<groupId>org.springframework.boot</groupId>
7-
<version>2.2.7.RELEASE</version>
7+
<version>2.3.0.RELEASE</version>
88
<relativePath></relativePath>
99
</parent>
1010

examples/ogm-integration/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<artifactId>spring-boot-starter-parent</artifactId>
66
<groupId>org.springframework.boot</groupId>
7-
<version>2.2.7.RELEASE</version>
7+
<version>2.3.0.RELEASE</version>
88
<relativePath></relativePath>
99
</parent>
1010

examples/ogm-integration/src/test/java/org/neo4j/doc/driver/springframework/boot/ogm_integration/ApplicationTest.java

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424
import org.neo4j.driver.springframework.boot.autoconfigure.Neo4jDriverAutoConfiguration;
2525
import org.neo4j.driver.Driver;
2626
import org.neo4j.ogm.session.SessionFactory;
27+
import org.springframework.beans.factory.ObjectProvider;
2728
import org.springframework.beans.factory.annotation.Autowired;
2829
import org.springframework.boot.autoconfigure.ImportAutoConfiguration;
2930
import org.springframework.boot.test.context.SpringBootTest;
@@ -64,16 +65,13 @@ public class ApplicationTest {
6465
@Autowired
6566
private BookmarkManager bookmarkManager;
6667

67-
@Autowired
68-
private OpenSessionInViewInterceptor openSessionInViewInterceptor;
69-
7068
@Test
71-
void contextLoads() {
69+
void contextLoads(@Autowired ObjectProvider<OpenSessionInViewInterceptor> openSessionInViewInterceptorProvider) {
7270
assertThat(driver).isNotNull();
7371
assertThat(sessionFactory).isNotNull();
7472
assertThat(transactionManager).isNotNull();
7573
assertThat(bookmarkManager).isNotNull();
76-
assertThat(openSessionInViewInterceptor).isNotNull();
74+
openSessionInViewInterceptorProvider.ifAvailable(i -> fail("There should not be an OpenSessionInViewInterceptor by default."));
7775
}
7876

7977
static class Initializer implements ApplicationContextInitializer<ConfigurableApplicationContext> {

examples/reactive-web/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<artifactId>spring-boot-starter-parent</artifactId>
66
<groupId>org.springframework.boot</groupId>
7-
<version>2.2.7.RELEASE</version>
7+
<version>2.3.0.RELEASE</version>
88
<relativePath></relativePath>
99
</parent>
1010

examples/simple/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<artifactId>spring-boot-starter-parent</artifactId>
66
<groupId>org.springframework.boot</groupId>
7-
<version>2.2.7.RELEASE</version>
7+
<version>2.3.0.RELEASE</version>
88
<relativePath></relativePath>
99
</parent>
1010

examples/testing-with-neo4j-harness/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<artifactId>spring-boot-starter-parent</artifactId>
66
<groupId>org.springframework.boot</groupId>
7-
<version>2.2.7.RELEASE</version>
7+
<version>2.3.0.RELEASE</version>
88
<relativePath></relativePath>
99
</parent>
1010

examples/web/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<artifactId>spring-boot-starter-parent</artifactId>
66
<groupId>org.springframework.boot</groupId>
7-
<version>2.2.7.RELEASE</version>
7+
<version>2.3.0.RELEASE</version>
88
<relativePath></relativePath>
99
</parent>
1010

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
<parent>
2424
<artifactId>spring-boot-starter-parent</artifactId>
2525
<groupId>org.springframework.boot</groupId>
26-
<version>2.2.7.RELEASE</version>
26+
<version>2.3.0.RELEASE</version>
2727
<relativePath></relativePath>
2828
</parent>
2929

0 commit comments

Comments
 (0)