|
5 | 5 | <parent>
|
6 | 6 | <groupId>com.cosium.spring.data</groupId>
|
7 | 7 | <artifactId>spring-data-jpa-entity-graph-parent</artifactId>
|
8 |
| - <version>2.7.11-SNAPSHOT</version> |
| 8 | + <version>3.0.0-SNAPSHOT</version> |
9 | 9 | </parent>
|
10 | 10 |
|
| 11 | + <name>Spring Data JPA EntityGraph</name> |
11 | 12 | <artifactId>spring-data-jpa-entity-graph</artifactId>
|
12 | 13 |
|
13 |
| - <properties> |
14 |
| - <spring.data.jpa>2.7.2</spring.data.jpa> |
15 |
| - <eclipselink>3.0.2</eclipselink> |
16 |
| - <querydsl>5.0.0</querydsl> |
17 |
| - |
18 |
| - <!--Test--> |
19 |
| - <dbunit>2.7.3</dbunit> |
20 |
| - <spring-test-dbunit>1.3.0</spring-test-dbunit> |
21 |
| - <spring.framework.version>5.3.22</spring.framework.version> |
22 |
| - <hibernate.version>5.6.8.Final</hibernate.version> |
23 |
| - <hsqldb.version>2.6.1</hsqldb.version> |
24 |
| - <assertj>3.23.1</assertj> |
25 |
| - <logback>1.2.11</logback> |
26 |
| - <junit.version>5.9.0</junit.version> |
27 |
| - </properties> |
28 |
| - |
29 |
| - <dependencyManagement> |
30 |
| - <dependencies> |
31 |
| - <dependency> |
32 |
| - <groupId>org.junit</groupId> |
33 |
| - <artifactId>junit-bom</artifactId> |
34 |
| - <version>${junit.version}</version> |
35 |
| - <type>pom</type> |
36 |
| - <scope>import</scope> |
37 |
| - </dependency> |
38 |
| - </dependencies> |
39 |
| - </dependencyManagement> |
40 |
| - |
41 | 14 | <dependencies>
|
42 | 15 | <dependency>
|
43 | 16 | <!--Needed by SpringHibernateJpaPersistenceProvider for spring-data-jpa while building with JDK 11-->
|
|
50 | 23 | <dependency>
|
51 | 24 | <groupId>org.springframework.data</groupId>
|
52 | 25 | <artifactId>spring-data-jpa</artifactId>
|
53 |
| - <version>${spring.data.jpa}</version> |
54 | 26 | <scope>provided</scope>
|
55 | 27 | </dependency>
|
56 |
| - <dependency> |
57 |
| - <groupId>org.eclipse.persistence</groupId> |
58 |
| - <artifactId>org.eclipse.persistence.jpa</artifactId> |
59 |
| - <version>${eclipselink}</version> |
60 |
| - <optional>true</optional> |
61 |
| - </dependency> |
62 | 28 |
|
63 | 29 | <dependency>
|
64 | 30 | <!--Needed by querydsl for @Generated annotation-->
|
|
71 | 37 | <dependency>
|
72 | 38 | <groupId>com.querydsl</groupId>
|
73 | 39 | <artifactId>querydsl-apt</artifactId>
|
74 |
| - <version>${querydsl}</version> |
| 40 | + <classifier>jakarta</classifier> |
75 | 41 | <scope>provided</scope>
|
76 | 42 | </dependency>
|
77 | 43 |
|
78 | 44 | <dependency>
|
79 |
| - <groupId>org.hibernate</groupId> |
| 45 | + <groupId>org.hibernate.orm</groupId> |
80 | 46 | <artifactId>hibernate-jpamodelgen</artifactId>
|
81 |
| - <version>${hibernate.version}</version> |
82 | 47 | <scope>provided</scope>
|
83 | 48 | </dependency>
|
84 | 49 |
|
|
92 | 57 | <dependency>
|
93 | 58 | <groupId>com.querydsl</groupId>
|
94 | 59 | <artifactId>querydsl-jpa</artifactId>
|
95 |
| - <version>${querydsl}</version> |
| 60 | + <classifier>jakarta</classifier> |
96 | 61 | <optional>true</optional>
|
97 | 62 | </dependency>
|
98 | 63 |
|
99 | 64 | <!--Test-->
|
100 | 65 | <dependency>
|
101 | 66 | <groupId>org.hsqldb</groupId>
|
102 | 67 | <artifactId>hsqldb</artifactId>
|
103 |
| - <version>${hsqldb.version}</version> |
104 | 68 | <scope>test</scope>
|
105 | 69 | </dependency>
|
106 | 70 | <dependency>
|
107 |
| - <groupId>org.hibernate</groupId> |
108 |
| - <artifactId>hibernate-entitymanager</artifactId> |
109 |
| - <version>${hibernate.version}</version> |
| 71 | + <groupId>org.hibernate.orm</groupId> |
| 72 | + <artifactId>hibernate-core</artifactId> |
110 | 73 | <scope>test</scope>
|
111 | 74 | </dependency>
|
112 | 75 | <dependency>
|
|
117 | 80 | <dependency>
|
118 | 81 | <groupId>com.github.springtestdbunit</groupId>
|
119 | 82 | <artifactId>spring-test-dbunit</artifactId>
|
120 |
| - <version>${spring-test-dbunit}</version> |
121 | 83 | <scope>test</scope>
|
122 | 84 | </dependency>
|
123 | 85 | <dependency>
|
124 | 86 | <groupId>org.springframework</groupId>
|
125 | 87 | <artifactId>spring-test</artifactId>
|
126 |
| - <version>${spring.framework.version}</version> |
127 | 88 | <scope>test</scope>
|
128 | 89 | </dependency>
|
129 | 90 | <dependency>
|
130 | 91 | <groupId>org.dbunit</groupId>
|
131 | 92 | <artifactId>dbunit</artifactId>
|
132 |
| - <version>${dbunit}</version> |
133 | 93 | <scope>test</scope>
|
134 | 94 | </dependency>
|
135 | 95 | <dependency>
|
136 | 96 | <groupId>org.assertj</groupId>
|
137 | 97 | <artifactId>assertj-core</artifactId>
|
138 |
| - <version>${assertj}</version> |
139 | 98 | <scope>test</scope>
|
140 | 99 | </dependency>
|
141 | 100 | <dependency>
|
142 | 101 | <groupId>ch.qos.logback</groupId>
|
143 | 102 | <artifactId>logback-classic</artifactId>
|
144 |
| - <version>${logback}</version> |
145 | 103 | <scope>test</scope>
|
146 | 104 | </dependency>
|
147 | 105 | </dependencies>
|
|
0 commit comments