Fix test execution

This commit is contained in:
Paulo Gustavo Veiga
2023-07-28 23:09:44 -07:00
parent a66dff8ae4
commit 53173ec75d
5 changed files with 58 additions and 7 deletions

View File

@@ -474,12 +474,12 @@
<artifactId>jetty-maven-plugin</artifactId>
<version>11.0.15</version>
<configuration>
<stopKey>foo</stopKey>
<httpConnector>
<port>8080</port>
</httpConnector>
<stopPort>9999</stopPort>
<deployMode>FORK</deployMode>
<stopKey>foo</stopKey>
<webApp>
<war>${project.build.directory}/wisemapping.war</war>
<overrideDescriptor>${project.basedir}/webdefault.xml</overrideDescriptor>
@@ -490,11 +490,11 @@
<id>run-forked</id>
<phase>pre-integration-test</phase>
<goals>
<goal>run-war</goal>
<goal>start-war</goal>
</goals>
<configuration>
<useTestScope>true</useTestScope>
<jvmArgs>-Ddatabase.base.url=${project.build.directory} -Djetty.port=8080 -Dlogging.level.org.springframework=TRACE</jvmArgs>
<jvmArgs>-Ddatabase.base.url=${project.build.directory} -Djetty.port=8080</jvmArgs>
</configuration>
</execution>
<execution>