formatting amend

This commit is contained in:
Michael Suzuki 2014-09-05 14:23:38 +01:00
parent dab870c8f5
commit 51ab29e79b

View File

@ -808,72 +808,72 @@
</executions> </executions>
</plugin> </plugin>
<!-- In this case the maven-compiler-plugin must be located after the build-helper-maven-plugin --> <!-- In this case the maven-compiler-plugin must be located after the build-helper-maven-plugin -->
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId> <artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version> <version>2.3.2</version>
<executions> <executions>
<execution> <execution>
<id>compile-integration-test</id> <id>compile-integration-test</id>
<phase>pre-integration-test</phase> <phase>pre-integration-test</phase>
<goals> <goals>
<goal>testCompile</goal> <goal>testCompile</goal>
</goals> </goals>
<configuration> <configuration>
<compilerArguments> <compilerArguments>
<d>${project.build.directory}/integration-classes</d> <d>${project.build.directory}/integration-classes</d>
</compilerArguments> </compilerArguments>
</configuration> </configuration>
</execution> </execution>
</executions> </executions>
</plugin> </plugin>
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId> <artifactId>maven-surefire-plugin</artifactId>
<version>2.9</version> <version>2.9</version>
</plugin> </plugin>
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId> <artifactId>maven-failsafe-plugin</artifactId>
<version>2.10</version> <version>2.10</version>
<configuration> <configuration>
<testSourceDirectory>src/integration/java</testSourceDirectory> <testSourceDirectory>src/integration/java</testSourceDirectory>
<testClassesDirectory>${project.build.directory}/integration-classes</testClassesDirectory> <testClassesDirectory>${project.build.directory}/integration-classes</testClassesDirectory>
<suiteXmlFiles> <suiteXmlFiles>
<suiteXmlFile>src/integration/resources/testng.xml</suiteXmlFile> <suiteXmlFile>src/integration/resources/testng.xml</suiteXmlFile>
</suiteXmlFiles> </suiteXmlFiles>
</configuration> </configuration>
<executions> <executions>
<execution> <execution>
<id>integration-test</id> <id>integration-test</id>
<goals> <goals>
<goal>integration-test</goal> <goal>integration-test</goal>
</goals> </goals>
</execution> </execution>
<execution> <execution>
<id>verify</id> <id>verify</id>
<goals> <goals>
<goal>verify</goal> <goal>verify</goal>
</goals> </goals>
</execution> </execution>
</executions> </executions>
</plugin> </plugin>
</plugins> </plugins>
</build> </build>
<dependencies> <dependencies>
<dependency> <dependency>
<groupId>org.testng</groupId> <groupId>org.testng</groupId>
<artifactId>testng</artifactId> <artifactId>testng</artifactId>
<version>6.8.8</version> <version>6.8.8</version>
<scope>test</scope> <scope>test</scope>
<exclusions> <exclusions>
<exclusion> <exclusion>
<groupId>org.hamcrest</groupId> <groupId>org.hamcrest</groupId>
<artifactId>hamcrest-core</artifactId> <artifactId>hamcrest-core</artifactId>
</exclusion> </exclusion>
</exclusions> </exclusions>
</dependency> </dependency>
</dependencies> </dependencies>
</profile> </profile>
</profiles> </profiles>
</project> </project>