Skip to content
This repository was archived by the owner on Oct 21, 2024. It is now read-only.

Commit 3ec1947

Browse files
committed
spring-jpa: updated dependencies
1 parent c703328 commit 3ec1947

File tree

1 file changed

+19
-34
lines changed

1 file changed

+19
-34
lines changed

spring/spring-data-jpa/app/pom.xml

+19-34
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,16 @@
1212
<maven.compiler.plugin.version>3.8.0</maven.compiler.plugin.version>
1313
<maven.shade.version>3.2.1</maven.shade.version>
1414

15-
<!-- Normal Dependency Versions -->
15+
<!-- persistence dependencies -->
1616
<hibernate.core.version>5.4.3.Final</hibernate.core.version>
1717
<hibernate.mysql.connector>8.0.16</hibernate.mysql.connector>
18-
19-
<spring.version>5.1.6.RELEASE</spring.version>
20-
<spring-boot.version>2.0.0.RELEASE</spring-boot.version>
2118
<spring-data-jpa.version>2.1.8.RELEASE</spring-data-jpa.version>
2219
<datasource-hikari.version>3.3.1</datasource-hikari.version>
2320

21+
<!-- Normal Dependency Versions -->
22+
<spring.version>5.1.6.RELEASE</spring.version>
23+
<spring-boot.version>2.1.5.RELEASE</spring-boot.version>
24+
2425
<lombok.version>1.18.6</lombok.version>
2526
<slf4j.version>1.7.25</slf4j.version>
2627
<logback.version>1.2.3</logback.version>
@@ -33,7 +34,6 @@
3334
<mockito.version>2.26.0</mockito.version>
3435
<assertj.version>3.12.2</assertj.version>
3536
<codearte.catchexception.version>1.4.6</codearte.catchexception.version>
36-
3737
</properties>
3838

3939
<dependencies>
@@ -51,17 +51,11 @@
5151
<version>${hibernate.mysql.connector}</version>
5252
</dependency>
5353

54-
<!-- Spring Boot -->
54+
<!-- JDBC Connection pool manager -->
5555
<dependency>
56-
<groupId>org.springframework.boot</groupId>
57-
<artifactId>spring-boot-starter</artifactId>
58-
<version>${spring-boot.version}</version>
59-
</dependency>
60-
61-
<dependency>
62-
<groupId>org.springframework.boot</groupId>
63-
<artifactId>spring-boot-starter-web</artifactId>
64-
<version>${spring-boot.version}</version>
56+
<groupId>com.zaxxer</groupId>
57+
<artifactId>HikariCP</artifactId>
58+
<version>${datasource-hikari.version}</version>
6559
</dependency>
6660

6761
<!-- Spring Data JPA -->
@@ -71,11 +65,17 @@
7165
<version>${spring-data-jpa.version}</version>
7266
</dependency>
7367

74-
<!-- DataSource (HikariCP) -->
68+
<!-- Spring Boot -->
7569
<dependency>
76-
<groupId>com.zaxxer</groupId>
77-
<artifactId>HikariCP</artifactId>
78-
<version>${datasource-hikari.version}</version>
70+
<groupId>org.springframework.boot</groupId>
71+
<artifactId>spring-boot-starter</artifactId>
72+
<version>${spring-boot.version}</version>
73+
</dependency>
74+
75+
<dependency>
76+
<groupId>org.springframework.boot</groupId>
77+
<artifactId>spring-boot-starter-web</artifactId>
78+
<version>${spring-boot.version}</version>
7979
</dependency>
8080

8181
<!-- Spring -->
@@ -166,21 +166,6 @@
166166
<scope>test</scope>
167167
</dependency>
168168

169-
<!-- Spring test -->
170-
<dependency>
171-
<groupId>org.springframework</groupId>
172-
<artifactId>spring-test</artifactId>
173-
<version>${spring.version}</version>
174-
<scope>test</scope>
175-
</dependency>
176-
177-
<dependency>
178-
<groupId>org.springframework.boot</groupId>
179-
<artifactId>spring-boot-starter-test</artifactId>
180-
<version>${spring-boot.version}</version>
181-
<scope>test</scope>
182-
</dependency>
183-
184169
</dependencies>
185170

186171
<build>

0 commit comments

Comments
 (0)