Skip to content

Commit da6d6ab

Browse files
authored
Merge pull request #75 from johnwalker/failsafe
Add maven failsafe plugin for running integration tests.
2 parents 6512c9e + 0674ede commit da6d6ab

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

pom.xml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -192,6 +192,32 @@
192192
</systemProperties>
193193
</configuration>
194194
</plugin>
195+
196+
<plugin>
197+
<groupId>org.apache.maven.plugins</groupId>
198+
<artifactId>maven-failsafe-plugin</artifactId>
199+
<version>3.0.0-M2</version>
200+
<configuration>
201+
<useSystemClassLoader>false</useSystemClassLoader>
202+
<systemProperties>
203+
<property>
204+
<name>sqlite4java.library.path</name>
205+
<value>${project.build.directory}/test-lib</value>
206+
</property>
207+
</systemProperties>
208+
<includes>
209+
<include>**/*ITCase.java</include>
210+
</includes>
211+
</configuration>
212+
<executions>
213+
<execution>
214+
<goals>
215+
<goal>integration-test</goal>
216+
<goal>verify</goal>
217+
</goals>
218+
</execution>
219+
</executions>
220+
</plugin>
195221
</plugins>
196222
</build>
197223

0 commit comments

Comments
 (0)