提交 f61f534a 编写于 作者: C cherrylzhao

for #2494 add maven-failsafe-plugin for integration-test.

上级 f3dac790
......@@ -504,6 +504,7 @@
<argLine>-Xmx1024m -XX:MaxPermSize=256m</argLine>
<excludes>
<exclude>**/*Tests.java</exclude>
<exclude>**/*Integrate*.java</exclude>
</excludes>
</configuration>
</plugin>
......
......@@ -30,5 +30,28 @@
<version>4.0.0-RC2-SNAPSHOT</version>
</parent>
<artifactId>sharding-integration-test</artifactId>
<name>${project.name}</name>
<name>${project.artifactId}</name>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId>
<executions>
<execution>
<id>integration-tests</id>
<goals>
<goal>integration-test</goal>
<goal>verify</goal>
</goals>
<configuration>
<includes>
<include>**/*Integrate*Test.java</include>
</includes>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册