|
@@ -13,17 +13,18 @@
|
|
<parent>
|
|
<parent>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-parent</artifactId>
|
|
<artifactId>spring-boot-starter-parent</artifactId>
|
|
- <version>2.1.0.RELEASE</version>
|
|
|
|
|
|
+ <version>2.2.0.M2</version>
|
|
</parent>
|
|
</parent>
|
|
|
|
|
|
<properties>
|
|
<properties>
|
|
- <maven.compiler.source>10</maven.compiler.source>
|
|
|
|
- <maven.compiler.target>10</maven.compiler.target>
|
|
|
|
|
|
+ <maven.compiler.source>11</maven.compiler.source>
|
|
|
|
+ <maven.compiler.target>11</maven.compiler.target>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
+ <spring-data-r2dbc.version>1.0.0.M2</spring-data-r2dbc.version>
|
|
<postgresql.version>42.2.5</postgresql.version>
|
|
<postgresql.version>42.2.5</postgresql.version>
|
|
- <pgclient.version>0.10.6</pgclient.version>
|
|
|
|
- <rxjava2-jdbc.version>0.2.0</rxjava2-jdbc.version>
|
|
|
|
- <r2dbc-postgresql.version>1.0.0.BUILD-SNAPSHOT</r2dbc-postgresql.version>
|
|
|
|
|
|
+ <pgclient.version>0.11.4</pgclient.version>
|
|
|
|
+ <rxjava2-jdbc.version>0.2.4</rxjava2-jdbc.version>
|
|
|
|
+ <r2dbc-postgresql.version>1.0.0.M7</r2dbc-postgresql.version>
|
|
</properties>
|
|
</properties>
|
|
|
|
|
|
<dependencies>
|
|
<dependencies>
|
|
@@ -67,8 +68,48 @@
|
|
<dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.data</groupId>
|
|
<groupId>org.springframework.data</groupId>
|
|
<artifactId>spring-data-r2dbc</artifactId>
|
|
<artifactId>spring-data-r2dbc</artifactId>
|
|
- <version>1.0.0.BUILD-SNAPSHOT</version>
|
|
|
|
|
|
+ <version>${spring-data-r2dbc.version}</version>
|
|
|
|
+<!-- Exclude Spring framework 2.2.0.M1 and use 2.2.0.M2 -->
|
|
|
|
+ <exclusions>
|
|
|
|
+ <exclusion>
|
|
|
|
+ <groupId>org.springframework</groupId>
|
|
|
|
+ <artifactId>spring-tx</artifactId>
|
|
|
|
+ </exclusion>
|
|
|
|
+ <exclusion>
|
|
|
|
+ <groupId>org.springframework</groupId>
|
|
|
|
+ <artifactId>spring-context</artifactId>
|
|
|
|
+ </exclusion>
|
|
|
|
+ <exclusion>
|
|
|
|
+ <groupId>org.springframework</groupId>
|
|
|
|
+ <artifactId>spring-core</artifactId>
|
|
|
|
+ </exclusion>
|
|
|
|
+ <exclusion>
|
|
|
|
+ <groupId>org.springframework</groupId>
|
|
|
|
+ <artifactId>spring-beans</artifactId>
|
|
|
|
+ </exclusion>
|
|
|
|
+ </exclusions>
|
|
</dependency>
|
|
</dependency>
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>org.springframework</groupId>
|
|
|
|
+ <artifactId>spring-tx</artifactId>
|
|
|
|
+ <version>5.2.0.M2</version>
|
|
|
|
+ </dependency>
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>org.springframework</groupId>
|
|
|
|
+ <artifactId>spring-context</artifactId>
|
|
|
|
+ <version>5.2.0.M2</version>
|
|
|
|
+ </dependency>
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>org.springframework</groupId>
|
|
|
|
+ <artifactId>spring-core</artifactId>
|
|
|
|
+ <version>5.2.0.M2</version>
|
|
|
|
+ </dependency>
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>org.springframework</groupId>
|
|
|
|
+ <artifactId>spring-beans</artifactId>
|
|
|
|
+ <version>5.2.0.M2</version>
|
|
|
|
+ </dependency>
|
|
|
|
+<!-- End of 2.2.0.M1 and 2.2.0.M2 dependency preparations -->
|
|
</dependencies>
|
|
</dependencies>
|
|
|
|
|
|
<repositories>
|
|
<repositories>
|
|
@@ -93,7 +134,14 @@
|
|
<groupId>org.springframework.boot</groupId>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
</plugin>
|
|
</plugin>
|
|
|
|
+ <plugin>
|
|
|
|
+ <groupId>org.apache.maven.plugins</groupId>
|
|
|
|
+ <artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
+ <version>3.8.0</version>
|
|
|
|
+ <configuration>
|
|
|
|
+ <debug>false</debug>
|
|
|
|
+ </configuration>
|
|
|
|
+ </plugin>
|
|
</plugins>
|
|
</plugins>
|
|
</build>
|
|
</build>
|
|
-
|
|
|
|
</project>
|
|
</project>
|