fastconnect / tibco-bwmaven

FastConnect TIBCO Factory - BWMaven, application lifecycle management for TIBCO BusinessWorks projects
http://fastconnect.github.io/tibco-factory/bw-maven-plugin/
Apache License 2.0
13 stars 7 forks source link

Possibility to ignore EAR validation #5

Closed debovema closed 9 years ago

debovema commented 9 years ago

Added the possibility to ignore EAR validation by removing the '-v' switch of buildear parameters.

Usage in POM:

<properties>
  <buildear.validate>false</buildear.validate>
</properties>

or

...
<plugin>
  <groupId>fr.fastconnect.factory.tibco.bw.maven</groupId>
  <artifactId>bw-maven-plugin</artifactId>
  <version>${bw.maven.plugin.version}</version>
  <extensions>true</extensions>
  <configuration>
    <tibcoBuildEARValidation>false</tibcoBuildEARValidation>
  </configuration>
<plugin>
...