adding integration tests to managix: checkpoint
diff --git a/asterix-installer/pom.xml b/asterix-installer/pom.xml
index 1c11763..28b2b13 100644
--- a/asterix-installer/pom.xml
+++ b/asterix-installer/pom.xml
@@ -79,7 +79,7 @@
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
- <version>2.2-beta-2</version>
+ <version>2.2-beta-5</version>
<executions>
<execution>
<configuration>
@@ -94,21 +94,16 @@
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-surefire-plugin</artifactId>
- <version>2.12</version>
- <dependencies>
- <dependency>
- <groupId>org.apache.maven.surefire</groupId>
- <artifactId>surefire-junit47</artifactId>
- <version>2.12</version>
- </dependency>
- </dependencies>
- <configuration>
- <includes>
- <include>**/*.class</include>
- </includes>
- <excludeGroups>edu.uci.ics.asterix.installer.test.IntegerationTest</excludeGroups>
- </configuration>
+ <artifactId>maven-failsafe-plugin</artifactId>
+ <version>2.6</version>
+ <executions>
+ <execution>
+ <goals>
+ <goal>integration-test</goal>
+ <goal>verify</goal>
+ </goals>
+ </execution>
+ </executions>
</plugin>
</plugins>
</build>
@@ -117,7 +112,7 @@
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
- <version>3.8.1</version>
+ <version>4.8.1</version>
<scope>test</scope>
</dependency>
<dependency>