|
37 | 37 | <hibernate-70-snapshots>7.0.0-SNAPSHOT</hibernate-70-snapshots>
|
38 | 38 | <hsqldb>2.7.4</hsqldb>
|
39 | 39 | <h2>2.3.232</h2>
|
40 |
| - <jakarta-persistence-api>3.1.0</jakarta-persistence-api> |
| 40 | + <jakarta-persistence-api>3.2.0</jakarta-persistence-api> |
41 | 41 | <jsqlparser>5.0</jsqlparser>
|
42 | 42 | <mysql-connector-java>9.1.0</mysql-connector-java>
|
43 | 43 | <postgresql>42.7.4</postgresql>
|
|
111 | 111 | </repository>
|
112 | 112 | </repositories>
|
113 | 113 | </profile>
|
| 114 | + <profile> |
| 115 | + <id>all-dbs</id> |
| 116 | + <build> |
| 117 | + <plugins> |
| 118 | + <plugin> |
| 119 | + <groupId>org.apache.maven.plugins</groupId> |
| 120 | + <artifactId>maven-surefire-plugin</artifactId> |
| 121 | + <executions> |
| 122 | + <execution> |
| 123 | + <id>mysql-test</id> |
| 124 | + <phase>test</phase> |
| 125 | + <goals> |
| 126 | + <goal>test</goal> |
| 127 | + </goals> |
| 128 | + <configuration> |
| 129 | + <includes> |
| 130 | + <include>**/MySql*IntegrationTests.java</include> |
| 131 | + </includes> |
| 132 | + </configuration> |
| 133 | + </execution> |
| 134 | + <execution> |
| 135 | + <id>postgres-test</id> |
| 136 | + <phase>test</phase> |
| 137 | + <goals> |
| 138 | + <goal>test</goal> |
| 139 | + </goals> |
| 140 | + <configuration> |
| 141 | + <includes> |
| 142 | + <include>**/Postgres*IntegrationTests.java |
| 143 | + </include> |
| 144 | + </includes> |
| 145 | + </configuration> |
| 146 | + </execution> |
| 147 | + </executions> |
| 148 | + </plugin> |
| 149 | + </plugins> |
| 150 | + </build> |
| 151 | + </profile> |
114 | 152 | <profile>
|
115 | 153 | <id>eclipselink-next</id>
|
116 | 154 | <properties>
|
|
151 | 189 | </dependencies>
|
152 | 190 |
|
153 | 191 | <build>
|
| 192 | + <plugins> |
| 193 | + |
| 194 | + <plugin> |
| 195 | + <groupId>org.apache.maven.plugins</groupId> |
| 196 | + <artifactId>maven-surefire-plugin</artifactId> |
| 197 | + <dependencies> |
| 198 | + <dependency> |
| 199 | + <groupId>org.springframework</groupId> |
| 200 | + <artifactId>spring-instrument</artifactId> |
| 201 | + <version>${spring}</version> |
| 202 | + <scope>runtime</scope> |
| 203 | + </dependency> |
| 204 | + </dependencies> |
| 205 | + <executions> |
| 206 | + <execution> |
| 207 | + <!-- override the default-test execution and exclude everything --> |
| 208 | + <id>default-test</id> |
| 209 | + <configuration> |
| 210 | + <excludes> |
| 211 | + <exclude>**/*</exclude> |
| 212 | + </excludes> |
| 213 | + </configuration> |
| 214 | + </execution> |
| 215 | + <execution> |
| 216 | + <id>unit-test</id> |
| 217 | + <goals> |
| 218 | + <goal>test</goal> |
| 219 | + </goals> |
| 220 | + <phase>test</phase> |
| 221 | + <configuration> |
| 222 | + <includes> |
| 223 | + <include>**/*UnitTests.java</include> |
| 224 | + </includes> |
| 225 | + </configuration> |
| 226 | + </execution> |
| 227 | + <execution> |
| 228 | + <id>integration-test</id> |
| 229 | + <goals> |
| 230 | + <goal>test</goal> |
| 231 | + </goals> |
| 232 | + <phase>test</phase> |
| 233 | + <configuration> |
| 234 | + <includes> |
| 235 | + <include>**/*IntegrationTests.java</include> |
| 236 | + <include>**/*Tests.java</include> |
| 237 | + </includes> |
| 238 | + <excludes> |
| 239 | + <exclude>**/*UnitTests.java</exclude> |
| 240 | + <exclude>**/EclipseLink*</exclude> |
| 241 | + <exclude>**/MySql*</exclude> |
| 242 | + <exclude>**/Postgres*</exclude> |
| 243 | + </excludes> |
| 244 | + <argLine> |
| 245 | + -javaagent:${settings.localRepository}/org/springframework/spring-instrument/${spring}/spring-instrument-${spring}.jar |
| 246 | + </argLine> |
| 247 | + </configuration> |
| 248 | + </execution> |
| 249 | + <execution> |
| 250 | + <id>eclipselink-test</id> |
| 251 | + <goals> |
| 252 | + <goal>test</goal> |
| 253 | + </goals> |
| 254 | + <phase>test</phase> |
| 255 | + <configuration> |
| 256 | + <includes> |
| 257 | + <include>**/EclipseLink*Tests.java</include> |
| 258 | + </includes> |
| 259 | + <argLine> |
| 260 | + -javaagent:${settings.localRepository}/org/eclipse/persistence/org.eclipse.persistence.jpa/${eclipselink}/org.eclipse.persistence.jpa-${eclipselink}.jar |
| 261 | + -javaagent:${settings.localRepository}/org/springframework/spring-instrument/${spring}/spring-instrument-${spring}.jar |
| 262 | + </argLine> |
| 263 | + </configuration> |
| 264 | + </execution> |
| 265 | + </executions> |
| 266 | + </plugin> |
| 267 | + |
| 268 | + </plugins> |
| 269 | + |
154 | 270 | <pluginManagement>
|
155 | 271 | <plugins>
|
156 | 272 | <plugin>
|
|
0 commit comments