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 Dec 12, 2015
1 parent b72a514 commit 4d3e18d
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 4d3e18d

Please sign in to comment.