Project Testing: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
No edit summary
Line 7: Line 7:
==Maven Configuration==
==Maven Configuration==


<pre>
<properties>
    <test.scratch.directory>target/test-scratch</test.scratch.directory>
</properties>
<plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-antrun-plugin</artifactId>
    <dependencies>
        <dependency>
            <groupId>org.apache.ant</groupId>
            <artifactId>ant</artifactId>
            <version>1.7.0</version>
        </dependency>
    </dependencies>
    <executions>
        <execution>
            <phase>generate-test-resources</phase>
            <configuration>
                <tasks>
                    <mkdir dir="${test.scratch.directory}" />
                </tasks>
            </configuration>
            <goals>
                <goal>run</goal>
            </goals>
        </execution>
    </executions>
</plugin>
</pre>


==Code==
==Code==

Revision as of 19:59, 28 June 2016

Internal

Testing Files in the Scratch Area of the Project

Maven Configuration

<properties>
    <test.scratch.directory>target/test-scratch</test.scratch.directory>
</properties>

<plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-antrun-plugin</artifactId>
    <dependencies>
        <dependency>
            <groupId>org.apache.ant</groupId>
            <artifactId>ant</artifactId>
            <version>1.7.0</version>
         </dependency>
     </dependencies>
     <executions>
         <execution>
             <phase>generate-test-resources</phase>
             <configuration>
                 <tasks>
                     <mkdir dir="${test.scratch.directory}" />
                 </tasks>
             </configuration>
             <goals>
                 <goal>run</goal>
             </goals>
        </execution>
    </executions>
</plugin>

Code