Skip to content

Commit be2ff47

Browse files
committed
Move architecture tests reports to a subfolder
1 parent b11f5d1 commit be2ff47

1 file changed

Lines changed: 27 additions & 0 deletions

File tree

pom.xml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -353,6 +353,33 @@
353353
<groupId>org.apache.maven.plugins</groupId>
354354
<artifactId>maven-surefire-plugin</artifactId>
355355
<version>${maven-surefire-plugin.version}</version>
356+
<executions>
357+
<execution>
358+
<goals>
359+
<goal>test</goal>
360+
</goals>
361+
<id>default-test</id>
362+
<phase>test</phase>
363+
<configuration>
364+
<excludes>
365+
<exclude>**/archunit/**</exclude>
366+
</excludes>
367+
</configuration>
368+
</execution>
369+
<execution>
370+
<goals>
371+
<goal>test</goal>
372+
</goals>
373+
<id>architecture-tests</id>
374+
<phase>test</phase>
375+
<configuration>
376+
<includes>
377+
<include>**/archunit/**</include>
378+
</includes>
379+
<reportsDirectory>${project.build.directory}/archunit-reports</reportsDirectory>
380+
</configuration>
381+
</execution>
382+
</executions>
356383
</plugin>
357384
<plugin>
358385
<groupId>org.assertj</groupId>

0 commit comments

Comments
 (0)