Skip to content

Commit

Permalink
Merge pull request #847 from stuartwdouglas/test-scope
Browse files Browse the repository at this point in the history
Exclude test scoped dependencies
  • Loading branch information
stuartwdouglas committed Feb 12, 2019
2 parents a87208c + 5cc29d1 commit a55367a
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -249,6 +249,10 @@ private void doProcess(CurateOutcome appState) throws AppCreatorException {
if (parts.length < 5) {
continue;
}
String scope = parts[4];
if(scope.equals("test")) {
continue;
}
StringBuilder sb = new StringBuilder();
//the last two bits are version and scope
//which we don't want
Expand Down

0 comments on commit a55367a

Please sign in to comment.