Skip to content

Commit

Permalink
handle subtrees in pom.xml
Browse files Browse the repository at this point in the history
  • Loading branch information
stdweird committed Sep 19, 2015
1 parent 4843c07 commit 1173570
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 2 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,7 @@
<resource>
<directory>src/main/perl</directory>
<includes>
<include>*.pm</include>
<include>**/*.pm</include>
</includes>
<filtering>true</filtering>
Expand Down Expand Up @@ -138,6 +139,7 @@
<directory>src/main/perl</directory>
<includes>
<include>*.pm</include>
<include>**/*.pm</include>
</includes>
<filtering>true</filtering>
</resource>
Expand Down
3 changes: 2 additions & 1 deletion src/test/perl/download-pan.t
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ use Test::More;

# needs real LC for CCM, not the mocked one set via -I in pom.xml
BEGIN {
@INC = grep {$_ !~ /CAF\/src\/test\/resources/ } @INC;
@INC = grep {$_ !~ /\/src\/test\/resources$/ } @INC;
diag explain \@INC;
};
use Test::Quattor qw(download_pan);

Expand Down

0 comments on commit 1173570

Please sign in to comment.