|
3 | 3 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
4 | 4 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> |
5 | 5 | <modelVersion>4.0.0</modelVersion> |
6 | | - |
7 | | - <groupId>com.baeldung</groupId> |
8 | 6 | <artifactId>spring-data-vector</artifactId> |
9 | 7 | <version>0.0.1-SNAPSHOT</version> |
10 | 8 | <packaging>jar</packaging> |
11 | 9 |
|
12 | 10 | <parent> |
13 | | - <groupId>org.springframework.boot</groupId> |
14 | | - <artifactId>spring-boot-starter-parent</artifactId> |
15 | | - <version>4.0.0-M2</version> |
16 | | - <relativePath/> |
| 11 | + <groupId>com.baeldung</groupId> |
| 12 | + <artifactId>parent-boot-4</artifactId> |
| 13 | + <version>0.0.1-SNAPSHOT</version> |
| 14 | + <relativePath>../../parent-boot-4</relativePath> |
17 | 15 | </parent> |
18 | | - |
19 | 16 | <dependencies> |
20 | 17 | <dependency> |
21 | 18 | <groupId>org.hibernate.orm</groupId> |
22 | 19 | <artifactId>hibernate-vector</artifactId> |
23 | 20 | <version>${hibernate.version}</version> |
24 | 21 | </dependency> |
25 | | - |
26 | 22 | <dependency> |
27 | 23 | <groupId>org.springframework.boot</groupId> |
28 | 24 | <artifactId>spring-boot-starter</artifactId> |
29 | 25 | </dependency> |
30 | | - |
31 | 26 | <dependency> |
32 | 27 | <groupId>org.springframework.boot</groupId> |
33 | 28 | <artifactId>spring-boot-starter-web</artifactId> |
34 | 29 | </dependency> |
35 | | - |
36 | 30 | <dependency> |
37 | 31 | <groupId>org.springframework.boot</groupId> |
38 | 32 | <artifactId>spring-boot-starter-data-jpa</artifactId> |
39 | 33 | </dependency> |
40 | | - |
41 | 34 | <dependency> |
42 | 35 | <groupId>org.springframework.boot</groupId> |
43 | 36 | <artifactId>spring-boot-starter-data-mongodb</artifactId> |
44 | 37 | </dependency> |
45 | | - |
46 | 38 | <dependency> |
47 | 39 | <groupId>org.testcontainers</groupId> |
48 | 40 | <artifactId>mongodb</artifactId> |
49 | | - <version>1.21.3</version> |
| 41 | + <version>${mongodb.version}</version> |
50 | 42 | <scope>test</scope> |
51 | 43 | </dependency> |
52 | | - |
53 | 44 | <dependency> |
54 | 45 | <groupId>org.testcontainers</groupId> |
55 | 46 | <artifactId>postgresql</artifactId> |
56 | 47 | <scope>test</scope> |
57 | 48 | </dependency> |
58 | | - |
59 | 49 | <dependency> |
60 | 50 | <groupId>org.postgresql</groupId> |
61 | 51 | <artifactId>postgresql</artifactId> |
62 | 52 | <!-- <scope>runtime</scope>--> |
63 | 53 | </dependency> |
64 | | - |
65 | 54 | <dependency> |
66 | 55 | <groupId>org.springframework.boot</groupId> |
67 | 56 | <artifactId>spring-boot-starter-test</artifactId> |
68 | 57 | <scope>test</scope> |
69 | 58 | </dependency> |
70 | | - |
71 | 59 | <dependency> |
72 | 60 | <groupId>org.springframework.boot</groupId> |
73 | 61 | <artifactId>spring-boot-testcontainers</artifactId> |
74 | 62 | <scope>test</scope> |
75 | 63 | </dependency> |
76 | | - |
77 | 64 | <dependency> |
78 | 65 | <groupId>org.testcontainers</groupId> |
79 | 66 | <artifactId>junit-jupiter</artifactId> |
80 | 67 | <scope>test</scope> |
81 | 68 | </dependency> |
82 | | - |
83 | 69 | <dependency> |
84 | 70 | <groupId>com.opencsv</groupId> |
85 | 71 | <artifactId>opencsv</artifactId> |
86 | | - <version>5.7.1</version> |
| 72 | + <version>${opencsv.version}</version> |
87 | 73 | </dependency> |
88 | | - |
89 | 74 | </dependencies> |
90 | 75 |
|
91 | | - <properties> |
92 | | - <java.version>17</java.version> |
93 | | - <spring-boot.version>4.0.0-M4</spring-boot.version> |
94 | | - </properties> |
95 | | - |
96 | 76 | <build> |
97 | 77 | <plugins> |
98 | 78 | <plugin> |
|
102 | 82 | </plugins> |
103 | 83 | </build> |
104 | 84 |
|
| 85 | + <properties> |
| 86 | + <spring-boot.repackage.skip>true</spring-boot.repackage.skip> |
| 87 | + <java.version>17</java.version> |
| 88 | + <hibernate.version>7.1.7.Final</hibernate.version> |
| 89 | + <opencsv.version>5.7.1</opencsv.version> |
| 90 | + <mongodb.version>1.21.3</mongodb.version> |
| 91 | + </properties> |
| 92 | + |
105 | 93 | </project> |
0 commit comments