|
12 | 12 | <artifactId>spring-data-jpa-entity-graph</artifactId> |
13 | 13 |
|
14 | 14 | <dependencies> |
15 | | - |
16 | | - <!--Needed by SpringHibernateJpaPersistenceProvider for spring-data-jpa while building with JDK 11 |
17 | | - <dependency> |
18 | | - <groupId>javax.xml.bind</groupId> |
19 | | - <artifactId>jaxb-api</artifactId> |
20 | | - <version>2.4.0-b180830.0359</version> |
21 | | - <scope>provided</scope> |
22 | | - </dependency> |
23 | | - --> |
24 | | - |
25 | 15 | <dependency> |
26 | 16 | <groupId>org.springframework.data</groupId> |
27 | 17 | <artifactId>spring-data-jpa</artifactId> |
|
31 | 21 | <dependency> |
32 | 22 | <groupId>jakarta.persistence</groupId> |
33 | 23 | <artifactId>jakarta.persistence-api</artifactId> |
34 | | - <version>3.2.0</version> |
35 | 24 | <scope>provided</scope> |
36 | 25 | </dependency> |
37 | 26 |
|
|
42 | 31 | <version>1.3.2</version> |
43 | 32 | <scope>provided</scope> |
44 | 33 | </dependency> |
45 | | - |
46 | | - <!-- |
47 | | - <dependency> |
48 | | - <groupId>com.querydsl</groupId> |
49 | | - <artifactId>querydsl-apt</artifactId> |
50 | | - <classifier>jakarta</classifier> |
51 | | - <scope>provided</scope> |
52 | | - </dependency> |
53 | | -
|
54 | | - <dependency> |
55 | | - <groupId>org.hibernate.orm</groupId> |
56 | | - <artifactId>hibernate-processor</artifactId> |
57 | | - <version>${hibernate.version}</version> |
58 | | - <scope>provided</scope> |
59 | | - </dependency> |
60 | | -
|
61 | | - <dependency> |
62 | | - <groupId>${project.groupId}</groupId> |
63 | | - <artifactId>spring-data-jpa-entity-graph-generator</artifactId> |
64 | | - <version>${project.version}</version> |
65 | | - <scope>provided</scope> |
66 | | - </dependency> |
67 | | - --> |
68 | 34 |
|
69 | 35 | <dependency> |
70 | 36 | <groupId>com.querydsl</groupId> |
|
135 | 101 | <artifactId>maven-compiler-plugin</artifactId> |
136 | 102 | <configuration> |
137 | 103 | <annotationProcessorPaths> |
138 | | - <annotationProcessorPath> |
139 | | - <groupId>com.querydsl</groupId> |
140 | | - <artifactId>querydsl-apt</artifactId> |
141 | | - <version>${querydsl}</version> |
142 | | - <classifier>jakarta</classifier> |
143 | | - </annotationProcessorPath> |
144 | | - <annotationProcessorPath> |
145 | | - <groupId>jakarta.persistence</groupId> |
146 | | - <artifactId>jakarta.persistence-api</artifactId> |
147 | | - </annotationProcessorPath> |
148 | 104 | <path> |
149 | 105 | <groupId>org.hibernate.orm</groupId> |
150 | 106 | <artifactId>hibernate-processor</artifactId> |
151 | 107 | <version>${hibernate.version}</version> |
152 | 108 | </path> |
153 | 109 | <path> |
154 | | - <groupId>com.cosium.spring.data</groupId> |
| 110 | + <groupId>com.querydsl</groupId> |
| 111 | + <artifactId>querydsl-apt</artifactId> |
| 112 | + <version>${querydsl}</version> |
| 113 | + <classifier>jakarta</classifier> |
| 114 | + </path> |
| 115 | + <path> |
| 116 | + <groupId>${project.groupId}</groupId> |
155 | 117 | <artifactId>spring-data-jpa-entity-graph-generator</artifactId> |
156 | | - <version>3.5.0</version> |
| 118 | + <version>${project.version}</version> |
157 | 119 | </path> |
158 | 120 | </annotationProcessorPaths> |
| 121 | + <generatedTestSourcesDirectory>target/generated-test-sources</generatedTestSourcesDirectory> |
| 122 | + <generatedSourcesDirectory>target/generated-sources</generatedSourcesDirectory> |
159 | 123 | </configuration> |
160 | 124 | </plugin> |
161 | 125 | </plugins> |
|
0 commit comments