Re: How do I separate UTs and ITs directory?

2016-06-24 Thread Oliver B. Fischer
identify the wildcard patterns : "**/IT*.java" .. "**/*IT.java" But how do I separate UTs and ITs directory with https://maven.apache.org/guides/introduction/introduction-to-the-standard-directory-layout.html ? +Project +src/it/java ITEcho.java +src/test/java EchoTest.java +src

Re: How do I separate UTs and ITs directory?

2016-06-24 Thread John Patrick
on-exclusion.html >> , the Failsafe Plugin will automatically identify the wildcard patterns : >> "**/IT*.java" .. "**/*IT.java" >> >> >> But how do I separate UTs and ITs directory with >> >> https://maven.apache.org/guides/introduction/introductio

Re: How do I separate UTs and ITs directory?

2016-06-24 Thread Karl Heinz Marbaise
Hi, On 6/24/16 10:58 AM, zuxiong lin wrote: Hi. maven devs. According to http://maven.apache.org/surefire/maven-failsafe-plugin/examples/inclusion-exclusion.html , the Failsafe Plugin will automatically identify the wildcard patterns : "**/IT*.java" .. "**/*IT.java" But h

How do I separate UTs and ITs directory?

2016-06-24 Thread zuxiong lin
Hi. maven devs. According to http://maven.apache.org/surefire/maven-failsafe-plugin/examples/inclusion-exclusion.html , the Failsafe Plugin will automatically identify the wildcard patterns : "**/IT*.java" .. "**/*IT.java" But how do I separate UTs and ITs directory with http