disable test execution for commons-maven and commons-gradle, not really needed anymore

This commit is contained in:
Martin Lippert
2022-12-30 22:20:21 +01:00
parent 9045e2eb05
commit 394b6c753a
2 changed files with 24 additions and 1 deletions

View File

@@ -51,4 +51,16 @@
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<skipTests>true</skipTests>
</configuration>
</plugin>
</plugins>
</build>
</project>

View File

@@ -117,5 +117,16 @@
</dependencies>
</dependencyManagement>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<skipTests>true</skipTests>
</configuration>
</plugin>
</plugins>
</build>
</project>
</project>