Fix integration test reporting (#2490)
Signed-off-by: Avgustin Marinov <Avgustin.Marinov@bosch.com>
This commit is contained in:
@@ -19,7 +19,7 @@
|
|||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
<artifactId>hawkbit-ddi-security</artifactId>
|
<artifactId>hawkbit-ddi-security</artifactId>
|
||||||
<name>hawkBit :: Security :: Controller</name>
|
<name>hawkBit :: DDI :: Security</name>
|
||||||
|
|
||||||
<dependencies>
|
<dependencies>
|
||||||
<dependency>
|
<dependency>
|
||||||
|
|||||||
@@ -35,7 +35,7 @@
|
|||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.eclipse.hawkbit</groupId>
|
<groupId>org.eclipse.hawkbit</groupId>
|
||||||
<artifactId>hawkbit-ddi-security</artifactId>
|
<artifactId>hawkbit-artifact-repository-filesystem</artifactId>
|
||||||
<version>${project.version}</version>
|
<version>${project.version}</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
@@ -53,11 +53,6 @@
|
|||||||
<artifactId>hawkbit-repository-jpa</artifactId>
|
<artifactId>hawkbit-repository-jpa</artifactId>
|
||||||
<version>${project.version}</version>
|
<version>${project.version}</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
|
||||||
<groupId>org.eclipse.hawkbit</groupId>
|
|
||||||
<artifactId>hawkbit-artifact-repository-filesystem</artifactId>
|
|
||||||
<version>${project.version}</version>
|
|
||||||
</dependency>
|
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.eclipse.hawkbit</groupId>
|
<groupId>org.eclipse.hawkbit</groupId>
|
||||||
<artifactId>hawkbit-autoconfigure</artifactId>
|
<artifactId>hawkbit-autoconfigure</artifactId>
|
||||||
@@ -73,6 +68,11 @@
|
|||||||
<artifactId>hawkbit-ddi-resource</artifactId>
|
<artifactId>hawkbit-ddi-resource</artifactId>
|
||||||
<version>${project.version}</version>
|
<version>${project.version}</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.eclipse.hawkbit</groupId>
|
||||||
|
<artifactId>hawkbit-ddi-security</artifactId>
|
||||||
|
<version>${project.version}</version>
|
||||||
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.eclipse.hawkbit</groupId>
|
<groupId>org.eclipse.hawkbit</groupId>
|
||||||
<artifactId>hawkbit-mgmt-api</artifactId>
|
<artifactId>hawkbit-mgmt-api</artifactId>
|
||||||
|
|||||||
31
pom.xml
31
pom.xml
@@ -85,7 +85,6 @@
|
|||||||
<maven.site.plugin.version>3.21.0</maven.site.plugin.version>
|
<maven.site.plugin.version>3.21.0</maven.site.plugin.version>
|
||||||
|
|
||||||
<maven.surefire.plugin.version>3.5.3</maven.surefire.plugin.version>
|
<maven.surefire.plugin.version>3.5.3</maven.surefire.plugin.version>
|
||||||
<maven.failsafe.plugin.version>3.5.3</maven.failsafe.plugin.version>
|
|
||||||
<jacoco.maven.plugin.version>0.8.13</jacoco.maven.plugin.version>
|
<jacoco.maven.plugin.version>0.8.13</jacoco.maven.plugin.version>
|
||||||
|
|
||||||
<license.tool.plugin.version>1.1.0</license.tool.plugin.version>
|
<license.tool.plugin.version>1.1.0</license.tool.plugin.version>
|
||||||
@@ -97,8 +96,6 @@
|
|||||||
<!-- Test - START -->
|
<!-- Test - START -->
|
||||||
<surefire.forkcount>1</surefire.forkcount>
|
<surefire.forkcount>1</surefire.forkcount>
|
||||||
<surefire.jvm.args/>
|
<surefire.jvm.args/>
|
||||||
<failsafe.forkcount>${surefire.forkcount}</failsafe.forkcount>
|
|
||||||
<failsafe.jvm.args>-Xmx1024m</failsafe.jvm.args>
|
|
||||||
<!-- Test - END -->
|
<!-- Test - END -->
|
||||||
|
|
||||||
<!-- Sonar - START -->
|
<!-- Sonar - START -->
|
||||||
@@ -538,40 +535,14 @@
|
|||||||
<artifactId>maven-surefire-plugin</artifactId>
|
<artifactId>maven-surefire-plugin</artifactId>
|
||||||
<version>${maven.surefire.plugin.version}</version>
|
<version>${maven.surefire.plugin.version}</version>
|
||||||
<configuration>
|
<configuration>
|
||||||
<!-- Bugfix for OpenJDK 8u181, see https://issues.apache.org/jira/browse/SUREFIRE-1588 -->
|
|
||||||
<useSystemClassLoader>false</useSystemClassLoader>
|
|
||||||
<reuseForks>true</reuseForks>
|
<reuseForks>true</reuseForks>
|
||||||
<forkCount>${surefire.forkcount}</forkCount>
|
<forkCount>${surefire.forkcount}</forkCount>
|
||||||
<argLine>${jacoco.agent.args} ${surefire.jvm.args}</argLine>
|
<argLine>${jacoco.agent.args} ${surefire.jvm.args}</argLine>
|
||||||
<includes>
|
|
||||||
<include>**/*Tests.java</include>
|
|
||||||
<include>**/*Test.java</include>
|
|
||||||
<include>**/*IT.java</include>
|
|
||||||
</includes>
|
|
||||||
<excludes>
|
<excludes>
|
||||||
<exclude>**/Abstract*.java</exclude>
|
<exclude>**/Abstract*.java</exclude>
|
||||||
</excludes>
|
</excludes>
|
||||||
</configuration>
|
</configuration>
|
||||||
</plugin>
|
</plugin>
|
||||||
<plugin>
|
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
|
||||||
<artifactId>maven-failsafe-plugin</artifactId>
|
|
||||||
<version>${maven.failsafe.plugin.version}</version>
|
|
||||||
<configuration>
|
|
||||||
<reuseForks>false</reuseForks>
|
|
||||||
<forkCount>${failsafe.forkcount}</forkCount>
|
|
||||||
<argLine>${jacoco.agent.integration.args} ${failsafe.jvm.args}</argLine>
|
|
||||||
</configuration>
|
|
||||||
<executions>
|
|
||||||
<execution>
|
|
||||||
<id>integration-test</id>
|
|
||||||
<phase>integration-test</phase>
|
|
||||||
<goals>
|
|
||||||
<goal>integration-test</goal>
|
|
||||||
</goals>
|
|
||||||
</execution>
|
|
||||||
</executions>
|
|
||||||
</plugin>
|
|
||||||
</plugins>
|
</plugins>
|
||||||
</pluginManagement>
|
</pluginManagement>
|
||||||
</build>
|
</build>
|
||||||
@@ -711,7 +682,7 @@
|
|||||||
<executions>
|
<executions>
|
||||||
<execution>
|
<execution>
|
||||||
<id>generate-surefire-report</id>
|
<id>generate-surefire-report</id>
|
||||||
<phase>package</phase>
|
<phase>verify</phase>
|
||||||
<goals>
|
<goals>
|
||||||
<goal>report</goal>
|
<goal>report</goal>
|
||||||
</goals>
|
</goals>
|
||||||
|
|||||||
Reference in New Issue
Block a user