Browse Source

Skip Maven enforcer plugin during demo validation

Change-Id: Ic4b7dc9f9b646d88fe6b323d2c051f86edeeaa70
tags/7.7.1^0
Artur Signell 7 years ago
parent
commit
8f0b1a1dd0
1 changed files with 2 additions and 0 deletions
  1. 2
    0
      scripts/BuildHelpers.py

+ 2
- 0
scripts/BuildHelpers.py View File

@@ -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"])

Loading…
Cancel
Save