JAVA-5408: Use common postgresql.version property (#10879)

* JAVA-5408: Use common postgresql.version property

* JAVA-5408: Cleanup spring-boot-react

* JAVA-5408: Use commons-cli.version property in libraries-data

* JAVA-5408: spring-security-modules cleanup

Co-authored-by: Krzysztof Woyke <krzysztof.woyke.sp@lhsystems.com>
This commit is contained in:
kwoyke 2021-06-11 16:55:37 +02:00 committed by GitHub
parent 541faa3a97
commit 339fb7ec44
16 changed files with 31 additions and 27 deletions

View File

@ -73,7 +73,7 @@
<dependency>
<groupId>commons-cli</groupId>
<artifactId>commons-cli</artifactId>
<version>${commons.cli.version}</version>
<version>${commons-cli.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
@ -163,7 +163,6 @@
<properties>
<assembly.plugin.version>2.3</assembly.plugin.version>
<commons.cli.version>1.2</commons.cli.version>
<httpclient.version>3.0.1</httpclient.version>
<storm.version>1.2.2</storm.version>
<kafka.version>1.0.0</kafka.version>

View File

@ -45,7 +45,6 @@
<properties>
<h2.version>1.4.200</h2.version>
<postgresql.version>42.2.5.jre7</postgresql.version>
<mssql.driver.version>8.4.1.jre11</mssql.driver.version>
<oracle.driver.version>10.2.0.4.0</oracle.driver.version>
<mysql.driver.version>8.0.22</mysql.driver.version>

View File

@ -62,7 +62,6 @@
<properties>
<h2.version>1.4.200</h2.version>
<postgresql.version>42.2.5.jre7</postgresql.version>
<assertj-core.version>3.10.0</assertj-core.version>
<commons-dbcp2.version>2.4.0</commons-dbcp2.version>
<HikariCP.version>3.2.0</HikariCP.version>

View File

@ -91,7 +91,6 @@
<properties>
<hibernate.version>5.3.7.Final</hibernate.version>
<mysql.version>8.0.13</mysql.version>
<postgresql.version>42.2.11</postgresql.version>
<mariaDB4j.version>2.2.3</mariaDB4j.version>
<assertj-core.version>3.8.0</assertj-core.version>
<spring-boot.version>2.1.7.RELEASE</spring-boot.version>

View File

@ -75,7 +75,6 @@
</dependencies>
<properties>
<postgresql.version>42.2.20</postgresql.version>
<hibernate.version>5.4.12.Final</hibernate.version>
<hibernate-types.version>2.10.4</hibernate-types.version>
<assertj-core.version>3.8.0</assertj-core.version>

View File

@ -21,8 +21,4 @@
</dependency>
</dependencies>
<properties>
<postgresql.version>42.1.4</postgresql.version>
</properties>
</project>

View File

@ -44,7 +44,7 @@
<dependency>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
<version>${postgres.version}</version>
<version>${postgresql.version}</version>
<scope>runtime</scope>
</dependency>
<dependency>
@ -138,7 +138,6 @@
<properties>
<hibernate.version>5.4.14.Final</hibernate.version>
<eclipselink.version>2.7.4</eclipselink.version>
<postgres.version>42.2.5</postgres.version>
<javax.persistence-api.version>2.2</javax.persistence-api.version>
<assertj.version>3.11.1</assertj.version>
<maven-compiler-plugin.version>3.5.1</maven-compiler-plugin.version>

View File

@ -59,7 +59,7 @@
<dependency>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
<version>${postgres.version}</version>
<version>${postgresql.version}</version>
<scope>runtime</scope>
</dependency>
<dependency>
@ -92,7 +92,6 @@
<properties>
<hibernate.version>5.4.14.Final</hibernate.version>
<eclipselink.version>2.7.4</eclipselink.version>
<postgres.version>42.2.5</postgres.version>
<mysql.version>8.0.21</mysql.version>
<javax.persistence-api.version>2.2</javax.persistence-api.version>
<assertj.version>3.11.1</assertj.version>

View File

@ -44,7 +44,7 @@
<dependency>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
<version>${postgres.version}</version>
<version>${postgresql.version}</version>
<scope>runtime</scope>
</dependency>
</dependencies>
@ -104,7 +104,6 @@
<properties>
<hibernate.version>5.4.0.Final</hibernate.version>
<eclipselink.version>2.7.4</eclipselink.version>
<postgres.version>42.2.5</postgres.version>
<javax.persistence-api.version>2.2</javax.persistence-api.version>
<maven-processor-plugin.version>3.3.3</maven-processor-plugin.version>
<build-helper-maven-plugin.version>3.0.0</build-helper-maven-plugin.version>

View File

@ -45,7 +45,6 @@
<properties>
<jooq.version>3.13.4</jooq.version>
<postgresql.version>42.2.16</postgresql.version>
<h2.version>1.4.200</h2.version>
</properties>

View File

@ -94,6 +94,8 @@
<!-- persistence -->
<hibernate.version>5.2.17.Final</hibernate.version>
<postgresql.version>42.2.20</postgresql.version>
<!-- testing -->
<maven-surefire-plugin.version>2.22.2</maven-surefire-plugin.version>
<junit-jupiter.version>5.6.2</junit-jupiter.version>

View File

@ -15,28 +15,28 @@
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
<version>2.4.4</version>
<version>${spring-boot.version}</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-jpa</artifactId>
<version>2.4.4</version>
<version>${spring-boot.version}</version>
</dependency>
<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
<version>1.4.200</version>
<version>${h2.version}</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>com.github.javafaker</groupId>
<artifactId>javafaker</artifactId>
<version>1.0.2</version>
<version>${javafaker.version}</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<version>2.4.4</version>
<version>${spring-boot.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
@ -127,6 +127,9 @@
<frontend-maven-plugin.version>1.6</frontend-maven-plugin.version>
<node.version>v10.14.2</node.version>
<yarn.version>v1.12.1</yarn.version>
<spring-boot.version>2.4.4</spring-boot.version>
<h2.version>1.4.200</h2.version>
<javafaker.version>1.0.2</javafaker.version>
</properties>
</project>

View File

@ -55,12 +55,12 @@
<dependency>
<groupId>org.jsoup</groupId>
<artifactId>jsoup</artifactId>
<version>1.13.1</version>
<version>${jsoup.version}</version>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.8.0</version>
<version>${commons-io.version}</version>
</dependency>
</dependencies>
@ -77,4 +77,8 @@
</plugins>
</build>
<properties>
<jsoup.version>1.13.1</jsoup.version>
</properties>
</project>

View File

@ -20,7 +20,7 @@
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-dependencies</artifactId>
<version>2.1.2.RELEASE</version>
<version>${spring-boot.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
@ -57,4 +57,8 @@
</plugins>
</build>
<properties>
<spring-boot.version>2.1.2.RELEASE</spring-boot.version>
</properties>
</project>

View File

@ -21,7 +21,7 @@
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-dependencies</artifactId>
<version>1.5.9.RELEASE</version>
<version>${spring-boot.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
@ -62,4 +62,8 @@
</plugins>
</build>
<properties>
<spring-boot.version>1.5.9.RELEASE</spring-boot.version>
</properties>
</project>

View File

@ -80,7 +80,7 @@
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<version>1.5.10.RELEASE</version>
<version>${spring-boot-starter-test.version}</version>
<scope>test</scope>
</dependency>
</dependencies>