Skip to content

Commit

Permalink
[TEST] - including csv and properties in test resources
Browse files Browse the repository at this point in the history
  • Loading branch information
Kurtis Walker committed Jul 14, 2014
1 parent 5b64064 commit 42d2b55
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 4 deletions.
9 changes: 5 additions & 4 deletions build.xml
Expand Up @@ -526,10 +526,11 @@ META-INF/**,
OSGI-INF/**"/>
</copy>
<copy todir="${testclasses.dir}">
<fileset
dir="src/test/resources"
includes="
META-INF/**"/>
<fileset dir="src/test/resources">
<include name="META-INF/**"/>
<include name="**/*.csv"/>
<include name="**/*.properties"/>
</fileset>
</copy>
</target>

Expand Down
7 changes: 7 additions & 0 deletions pom.xml
Expand Up @@ -492,6 +492,13 @@
<include>log4j.properties</include>
</includes>
</testResource>
<testResource>
<directory>${project.basedir}/src/test/resources</directory>
<includes>
<include>**/*.csv</include>
<include>**/*.properties</include>
</includes>
</testResource>
</testResources>
</build>

Expand Down

0 comments on commit 42d2b55

Please sign in to comment.