|
342 | 342 | <artifactId>maven-surefire-plugin</artifactId> |
343 | 343 | <inherited>true</inherited> |
344 | 344 | <configuration> |
345 | | - <forkMode>once</forkMode> |
346 | 345 | <argLine>${argLine} -Xms256m -Xmx512m --add-opens java.base/java.net=ALL-UNNAMED</argLine> |
347 | 346 | <!-- Enable the next 2 lines if you want to attach a debugger |
348 | 347 | <argLine>-Xdebug -Xnoagent -Djava.compiler=NONE -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=5006</argLine>--> |
349 | 348 | <includes> |
350 | 349 | <include>**/*Test.java</include> |
351 | 350 | <include>**/*Tests.java</include> |
352 | 351 | </includes> |
353 | | - <systemProperties> |
354 | | - <!--<property> |
355 | | - <name>OASISCatalogManager.catalog.debug.level</name> |
356 | | - <value>9999</value> |
357 | | - </property>--> |
358 | | - <property> |
359 | | - <name>build.repository</name> |
360 | | - <value>./target/test-classes</value> |
361 | | - </property> |
362 | | - <property> |
363 | | - <name>jakarta.xml.soap.MessageFactory</name> |
364 | | - <value>org.apache.axis2.saaj.MessageFactoryImpl</value> |
365 | | - </property> |
366 | | - <property> |
367 | | - <name>jakarta.xml.soap.SOAPFactory</name> |
368 | | - <value>org.apache.axis2.saaj.SOAPFactoryImpl</value> |
369 | | - </property> |
370 | | - <property> |
371 | | - <name>jakarta.xml.soap.SOAPConnectionFactory</name> |
372 | | - <value>org.apache.axis2.saaj.SOAPConnectionFactoryImpl</value> |
373 | | - </property> |
374 | | - <property> |
375 | | - <name>jakarta.xml.soap.MetaFactory</name> |
376 | | - <value>org.apache.axis2.saaj.SAAJMetaFactoryImpl</value> |
377 | | - </property> |
| 352 | + <systemPropertyVariables> |
| 353 | + <!-- |
| 354 | + <OASISCatalogManager.catalog.debug.level>9999</OASISCatalogManager.catalog.debug.level> |
| 355 | + --> |
| 356 | + <build.repository>./target/test-classes</build.repository> |
| 357 | + <jakarta.xml.soap.MessageFactory>org.apache.axis2.saaj.MessageFactoryImpl</jakarta.xml.soap.MessageFactory> |
| 358 | + <jakarta.xml.soap.SOAPFactory>org.apache.axis2.saaj.SOAPFactoryImpl</jakarta.xml.soap.SOAPFactory> |
| 359 | + <jakarta.xml.soap.SOAPConnectionFactory>org.apache.axis2.saaj.SOAPConnectionFactoryImpl</jakarta.xml.soap.SOAPConnectionFactory> |
| 360 | + <jakarta.xml.soap.MetaFactory>org.apache.axis2.saaj.SAAJMetaFactoryImpl</jakarta.xml.soap.MetaFactory> |
378 | 361 | <!-- Need this for the client side to pickup an axis2.xml to configure SoapMessageMUProviderChecker --> |
379 | | - <property> |
380 | | - <name>org.apache.axis2.jaxws.config.path</name> |
381 | | - <value>./target/test-classes/axis2.xml</value> |
382 | | - </property> |
383 | | - <property> |
384 | | - <name>org.apache.axis2.jaxws.repo.path</name> |
385 | | - <value>./target/repository</value> |
386 | | - </property> |
| 362 | + <org.apache.axis2.jaxws.config.path>./target/test-classes/axis2.xml</org.apache.axis2.jaxws.config.path> |
| 363 | + <org.apache.axis2.jaxws.repo.path>./target/repository</org.apache.axis2.jaxws.repo.path> |
387 | 364 | <!-- Prevent Mac OS X from showing an icon in the dock during the test run --> |
388 | | - <property> |
389 | | - <name>java.awt.headless</name> |
390 | | - <value>true</value> |
391 | | - </property> |
392 | | - </systemProperties> |
| 365 | + <java.awt.headless>true</java.awt.headless> |
| 366 | + </systemPropertyVariables> |
393 | 367 | </configuration> |
394 | 368 | </plugin> |
395 | 369 | </plugins> |
|
0 commit comments