You could use some of the other project existing pom[1] as guidelines.
The poms are all inheriting the necessary configuration to run the
tests from the parent pom [2] and it looks like below :

               <!-- surefire plugin configuration -->
                <plugin>
                    <groupId>org.apache.maven.plugins</groupId>
                    <artifactId>maven-surefire-plugin</artifactId>
                    <version>2.3</version>
                    <configuration>
                        <includes>
                            <include>**/*TestCase.java</include>
                        </includes>
                        <reportFormat>brief</reportFormat>
                        <useFile>false</useFile>
                        <forkMode>once</forkMode>
                        <argLine>-ea -Xmx128m</argLine>
                    </configuration>
                </plugin>


[1] 
https://svn.apache.org/repos/asf/incubator/tuscany/java/sca/itest/contribution/pom.xml
[2] https://svn.apache.org/repos/asf/incubator/tuscany/java/sca/pom.xml

On 8/9/07, venu reddy <[EMAIL PROTECTED]> wrote:
> Folks, I am planing to create my own folder (venu) in java/sca/itests  and
> write few sample tests. Can any  one please post if  you have any guidelines
> on writing pom.xml (\java\sca\itests\venu\pom.xml)  to include my sample
> tests for maven to build and execute.
> Thanks,
> Venu.
>
> -----------------------------------------------------------------------------------------------------
> A 'wish' changes nothing. A 'decision' changes everything! ---- Anon
>


-- 
Luciano Resende
Apache Tuscany Committer
http://people.apache.org/~lresende
http://lresende.blogspot.com/

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to