Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Christian Willms
hfc
Commits
51c73095
Commit
51c73095
authored
Jan 10, 2022
by
Joerg Steffen
Browse files
Make sure Maven Surefire runs all classes, not just the ones with 'Test' in name
parent
175b8121
Changes
1
Hide whitespace changes
Inline
Side-by-side
pom.xml
View file @
51c73095
...
...
@@ -100,6 +100,19 @@
</execution>
</executions>
</plugin>
<plugin>
<!-- Make sure all classes are used for tests, not just with 'Test' in name -->
<groupId>
org.apache.maven.plugins
</groupId>
<artifactId>
maven-surefire-plugin
</artifactId>
<version>
2.22.1
</version>
<configuration>
<includes>
<include>
de/dfki/lt/hfc/**/*.java
</include>
</includes>
</configuration>
</plugin>
</plugins>
</build>
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment