Skip to content
This repository has been archived by the owner on Jan 7, 2020. It is now read-only.

Commit

Permalink
don't complain about parents missing from the BOM when in strict mode…
Browse files Browse the repository at this point in the history
…. That's only for pre-emptive modification when you plan to rebuild everything.
  • Loading branch information
jdcasey committed Jul 22, 2013
1 parent b923ee0 commit 140e246
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public class VersionSuffixVerifier
@Override
public void verify( final Project project, final VersionManagerSession session )
{
if ( session.isMissingParent( project ) )
if ( session.isStrict() && session.isMissingParent( project ) )
{
session.addError( new VManException(
"The project parent version was NOT specified in a BOM.\nParent: %s\nProject: %s\nFile: %s\n",
Expand Down

0 comments on commit 140e246

Please sign in to comment.