Author: jeff.yuchang
Date: 2010-01-09 10:03:33 -0500 (Sat, 09 Jan 2010)
New Revision: 450
Modified:
branches/ODE/ODE-2.0-maven/extensions/e4x/pom.xml
Log:
* uncomment the JSOperationTest.
* copy test/resources file into target folder.
Modified: branches/ODE/ODE-2.0-maven/extensions/e4x/pom.xml
===================================================================
--- branches/ODE/ODE-2.0-maven/extensions/e4x/pom.xml 2010-01-09 14:00:55 UTC (rev 449)
+++ branches/ODE/ODE-2.0-maven/extensions/e4x/pom.xml 2010-01-09 15:03:33 UTC (rev 450)
@@ -86,15 +86,25 @@
<build>
<plugins>
- <plugin>
- <artifactId>maven-surefire-plugin</artifactId>
- <!-- FIXME -->
- <configuration>
- <excludes>
- <exclude>**/JSOperationTest.java</exclude>
- </excludes>
- </configuration>
- </plugin>
+ <plugin>
+ <artifactId>maven-antrun-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>copy-test-resources</id>
+ <phase>process-resources</phase>
+ <goals>
+ <goal>run</goal>
+ </goals>
+ <configuration>
+ <tasks>
+ <copy todir="${project.build.directory}/resources">
+ <fileset dir="src/test/resources"/>
+ </copy>
+ </tasks>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
</plugins>
</build>
</project>
Show replies by date