We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f2dd78d commit d765b42Copy full SHA for d765b42
1 file changed
pom.xml
@@ -17,6 +17,7 @@
17
<user.name>[email protected]</user.name>
18
<maven.compiler.source>1.8</maven.compiler.source>
19
<maven.compiler.target>1.8</maven.compiler.target>
20
+ <skipTests>true</skipTests>
21
</properties>
22
23
<licenses>
@@ -123,11 +124,13 @@
123
124
</executions>
125
</plugin>
126
127
+ <!-- To run all tests: -->
128
+ <!-- mvn -DskipTests=false -Dtest=AllTests test -->
129
<plugin>
130
<groupId>org.apache.maven.plugins</groupId>
131
<artifactId>maven-surefire-plugin</artifactId>
132
<configuration>
- <skipTests>true</skipTests>
133
+ <skipTests>${skipTests}</skipTests>
134
</configuration>
135
136
0 commit comments