Browse Source

Add resource pattern so that tests run properly with resources in non-standard locations

git-svn-id: https://src.springframework.org/svn/spring-framework/trunk@2198 50f2f4bb-b051-0410-bef5-90022cba6387
pull/1/head
David Syer 16 years ago
parent
commit
35e055a368
  1. 19
      org.springframework.context/pom.xml

19
org.springframework.context/pom.xml

@ -235,5 +235,24 @@ @@ -235,5 +235,24 @@
</plugin>
</plugins>
</pluginManagement>
<testResources>
<testResource>
<directory>${project.basedir}/src/test/java
</directory>
<includes>
<include>**/*</include>
</includes>
<excludes>
<exclude>**/*.java</exclude>
</excludes>
</testResource>
<testResource>
<directory>${project.basedir}/src/test/resources
</directory>
<includes>
<include>**/*</include>
</includes>
</testResource>
</testResources>
</build>
</project>

Loading…
Cancel
Save