GH-444: Add CI surefire profile to exclude some test cases ----------------------------------------------------------
Key: OOZIE-292
URL: https://issues.apache.org/jira/browse/OOZIE-292
Project: Oozie
Issue Type: Bug
Reporter: Hadoop QA
Add this profile to core/pom.xml
<profile>
<id>oozieci</id>
<activation>
<activeByDefault>false</activeByDefault>
<property>
<name>oozieci</name>
</property>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<excludes>
<exclude>**/TestRerun.java</exclude>
<exclude>**/TestCallableQueueService.java</exclude>
<exclude>**/TestPigActionExecutor.java</exclude>
<exclude>**/TestCallableQueueService.java</exclude>
<exclude>**/TestSshActionExecutor.java</exclude>
</excludes>
</configuration>
</plugin>
</plugins>
</build>
</profile>
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira
