When using cargo to deploy to a remote server I would like to check with cargo or maven that the generated war have it's properties files filtered like expected.
Some phase in between should test a property file from war against some strings and so deploy or stop deployment.
there's built in on cargo to achieve this?
Not sure what are the properties files you're referring to therefore I assume that you refer to typical
java
*.properties
files.Anyway, I believe you should use:
maven-enforcer-plugin
and it's goal:enforce
as that is the common way in maven to enforce some condition (the plugin uses term:rule
) to be fulfilled.I think you have more options here.
Option 1
Maybe you could check that prio to packaging to your war using:
maven-property-plugin
- goal:read-project-properties
(http://mojo.codehaus.org/properties-maven-plugin/usage.html)where you should:
And afterwards go for
maven-enforcer-plugin
goal:enforce
and the rule:requireProperty
(http://maven.apache.org/enforcer/enforcer-rules/requireProperty.html)where:
your_property_to_check
should be replaced with the real one as well asregex
should be definedOption 2
If that is not feasible and you want to check property inside
war
file, you might need to write your ownrule
.That should not be a big deal as java has zip reading as well as properties files loading in it's standard API. To learn how to write custom rule, see: http://maven.apache.org/enforcer/enforcer-api/writing-a-custom-rule.html
Btw. I'd be quite curious to understand why would someone want to do check some property on each deployment? Is the case that your input (property files you filter) are dynamically generated/changed? Otherwise I doubt you need it once you check it works.