Skip to content

Commit

Permalink
Skip Maven enforcer plugin during demo validation
Browse files Browse the repository at this point in the history
Change-Id: Ic4b7dc9f9b646d88fe6b323d2c051f86edeeaa70
  • Loading branch information
Artur- committed Sep 14, 2016
1 parent 4d851ba commit 8f0b1a1
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions scripts/BuildHelpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,8 @@ def mavenValidate(artifactId, mvnCmd = mavenCmd, logFile = sys.stdout, version =
print("Do maven clean package validate")
cmd = [mvnCmd]
cmd.append("-Dvaadin.version=%s" % (version))
# Enforcer does not always seem to take vaadin.version into account, skip until this can be resolved
cmd.append("-Denforcer.skip=true")
if mavenParams is not None:
cmd.extend(mavenParams.strip('"').split(" "))
cmd.extend(["clean", "package", "validate"])
Expand Down

0 comments on commit 8f0b1a1

Please sign in to comment.