|
5 | 5 |
|
6 | 6 | <groupId>com.github.darrachequesne</groupId>
|
7 | 7 | <artifactId>spring-data-jpa-datatables</artifactId>
|
8 |
| - <version>5.2.0</version> |
| 8 | + <version>6.0.0-SNAPSHOT</version> |
9 | 9 |
|
10 | 10 | <name>Spring Data JPA for DataTables</name>
|
11 | 11 | <description>Spring Data JPA extension to work with the great jQuery plug-in DataTables (http://datatables.net/)</description>
|
|
48 | 48 |
|
49 | 49 | <properties>
|
50 | 50 | <!-- Version of maven plugins -->
|
51 |
| - <version.plugin.maven-release-plugin>2.5.2</version.plugin.maven-release-plugin> |
52 |
| - <version.plugin.nexus-staging-maven-plugin>1.6.5</version.plugin.nexus-staging-maven-plugin> |
53 |
| - <version.plugin.maven-gpg-plugin>1.6</version.plugin.maven-gpg-plugin> |
| 51 | + <version.plugin.maven-release-plugin>3.0.0-M7</version.plugin.maven-release-plugin> |
| 52 | + <version.plugin.nexus-staging-maven-plugin>1.6.13</version.plugin.nexus-staging-maven-plugin> |
| 53 | + <version.plugin.maven-gpg-plugin>3.0.1</version.plugin.maven-gpg-plugin> |
54 | 54 |
|
55 | 55 | <!-- Source encoding -->
|
56 |
| - <java.version>1.8</java.version> |
| 56 | + <java.version>17</java.version> |
57 | 57 | <maven.compiler.source>${java.version}</maven.compiler.source>
|
58 | 58 | <maven.compiler.target>${java.version}</maven.compiler.target>
|
59 | 59 | <source.encoding>UTF-8</source.encoding>
|
|
64 | 64 | <dependency>
|
65 | 65 | <groupId>org.springframework.boot</groupId>
|
66 | 66 | <artifactId>spring-boot-dependencies</artifactId>
|
67 |
| - <version>2.6.7</version> |
| 67 | + <version>3.0.0</version> |
| 68 | + <type>pom</type> |
| 69 | + <scope>import</scope> |
| 70 | + </dependency> |
| 71 | + <dependency> |
| 72 | + <groupId>org.junit</groupId> |
| 73 | + <artifactId>junit-bom</artifactId> |
| 74 | + <version>5.9.1</version> |
68 | 75 | <type>pom</type>
|
69 | 76 | <scope>import</scope>
|
70 | 77 | </dependency>
|
|
89 | 96 | </dependency>
|
90 | 97 |
|
91 | 98 | <dependency>
|
92 |
| - <groupId>javax.validation</groupId> |
93 |
| - <artifactId>validation-api</artifactId> |
| 99 | + <groupId>jakarta.validation</groupId> |
| 100 | + <artifactId>jakarta.validation-api</artifactId> |
94 | 101 | </dependency>
|
95 | 102 |
|
96 | 103 | <!-- Hibernate -->
|
97 | 104 | <dependency>
|
98 |
| - <groupId>org.hibernate</groupId> |
99 |
| - <artifactId>hibernate-entitymanager</artifactId> |
| 105 | + <groupId>org.hibernate.orm</groupId> |
| 106 | + <artifactId>hibernate-core</artifactId> |
| 107 | + <version>6.1.4.Final</version> |
100 | 108 | </dependency>
|
101 |
| - |
102 | 109 | <dependency>
|
103 | 110 | <groupId>com.querydsl</groupId>
|
104 | 111 | <artifactId>querydsl-apt</artifactId>
|
| 112 | + <version>5.0.0</version> |
| 113 | + <classifier>jakarta</classifier> |
105 | 114 | </dependency>
|
106 | 115 |
|
107 | 116 | <dependency>
|
108 | 117 | <groupId>com.querydsl</groupId>
|
109 | 118 | <artifactId>querydsl-jpa</artifactId>
|
| 119 | + <version>5.0.0</version> |
| 120 | + <classifier>jakarta</classifier> |
110 | 121 | </dependency>
|
111 | 122 |
|
112 | 123 | <dependency>
|
113 |
| - <groupId>javax.annotation</groupId> |
114 |
| - <artifactId>javax.annotation-api</artifactId> |
| 124 | + <groupId>jakarta.annotation</groupId> |
| 125 | + <artifactId>jakarta.annotation-api</artifactId> |
115 | 126 | <scope>compile</scope>
|
116 | 127 | </dependency>
|
117 | 128 |
|
118 | 129 | <!-- Test -->
|
119 | 130 | <dependency>
|
120 |
| - <groupId>junit</groupId> |
121 |
| - <artifactId>junit</artifactId> |
| 131 | + <groupId>org.junit.jupiter</groupId> |
| 132 | + <artifactId>junit-jupiter-engine</artifactId> |
122 | 133 | <scope>test</scope>
|
123 | 134 | </dependency>
|
124 | 135 |
|
|
141 | 152 | </dependency>
|
142 | 153 |
|
143 | 154 | <dependency>
|
144 |
| - <groupId>mysql</groupId> |
145 |
| - <artifactId>mysql-connector-java</artifactId> |
| 155 | + <groupId>com.mysql</groupId> |
| 156 | + <artifactId>mysql-connector-j</artifactId> |
146 | 157 | <scope>test</scope>
|
147 | 158 | </dependency>
|
148 | 159 |
|
|
154 | 165 |
|
155 | 166 | <dependency>
|
156 | 167 | <groupId>org.slf4j</groupId>
|
157 |
| - <artifactId>slf4j-log4j12</artifactId> |
| 168 | + <artifactId>slf4j-reload4j</artifactId> |
158 | 169 | <scope>test</scope>
|
159 | 170 | </dependency>
|
160 | 171 |
|
|
164 | 175 | <plugins>
|
165 | 176 | <plugin>
|
166 | 177 | <groupId>com.mysema.maven</groupId>
|
167 |
| - <artifactId>maven-apt-plugin</artifactId> |
168 |
| - <version>1.0</version> |
| 178 | + <artifactId>apt-maven-plugin</artifactId> |
| 179 | + <version>1.1.3</version> |
169 | 180 | <executions>
|
170 | 181 | <execution>
|
171 | 182 | <goals>
|
172 |
| - <goal>test-process</goal> |
| 183 | + <goal>process</goal> |
173 | 184 | </goals>
|
174 | 185 | <configuration>
|
175 | 186 | <outputDirectory>target/generated-sources/java</outputDirectory>
|
|
181 | 192 | <plugin>
|
182 | 193 | <groupId>org.apache.maven.plugins</groupId>
|
183 | 194 | <artifactId>maven-compiler-plugin</artifactId>
|
184 |
| - <version>3.8.1</version> |
| 195 | + <version>3.10.1</version> |
185 | 196 | <configuration>
|
186 | 197 | <source>${maven.compiler.source}</source>
|
187 | 198 | <target>${maven.compiler.target}</target>
|
|
191 | 202 | <plugin>
|
192 | 203 | <groupId>org.apache.maven.plugins</groupId>
|
193 | 204 | <artifactId>maven-resources-plugin</artifactId>
|
194 |
| - <version>3.1.0</version> |
| 205 | + <version>3.3.0</version> |
195 | 206 | <configuration>
|
196 | 207 | <encoding>${source.encoding}</encoding>
|
197 | 208 | </configuration>
|
|
215 | 226 | <plugin>
|
216 | 227 | <groupId>org.apache.maven.plugins</groupId>
|
217 | 228 | <artifactId>maven-javadoc-plugin</artifactId>
|
218 |
| - <version>3.2.0</version> |
| 229 | + <version>3.4.1</version> |
219 | 230 | </plugin>
|
220 | 231 | <!-- Nexus Staging Maven Plugin for Deployment and Release into Sonatype
|
221 | 232 | OSSRH -->
|
|
230 | 241 | <autoReleaseAfterClose>true</autoReleaseAfterClose>
|
231 | 242 | </configuration>
|
232 | 243 | </plugin>
|
| 244 | + |
| 245 | + <plugin> |
| 246 | + <groupId>org.apache.maven.plugins</groupId> |
| 247 | + <artifactId>maven-surefire-plugin</artifactId> |
| 248 | + <version>3.0.0-M7</version> |
| 249 | + </plugin> |
233 | 250 | </plugins>
|
234 | 251 | </build>
|
235 | 252 |
|
|
0 commit comments