Skip to content

Commit d765b42

Browse files
author
Wenjun Che
committed
ADAP-44: create junit tests
1 parent f2dd78d commit d765b42

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

pom.xml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
<user.name>[email protected]</user.name>
1818
<maven.compiler.source>1.8</maven.compiler.source>
1919
<maven.compiler.target>1.8</maven.compiler.target>
20+
<skipTests>true</skipTests>
2021
</properties>
2122

2223
<licenses>
@@ -123,11 +124,13 @@
123124
</executions>
124125
</plugin>
125126

127+
<!-- To run all tests: -->
128+
<!-- mvn -DskipTests=false -Dtest=AllTests test -->
126129
<plugin>
127130
<groupId>org.apache.maven.plugins</groupId>
128131
<artifactId>maven-surefire-plugin</artifactId>
129132
<configuration>
130-
<skipTests>true</skipTests>
133+
<skipTests>${skipTests}</skipTests>
131134
</configuration>
132135
</plugin>
133136

0 commit comments

Comments
 (0)