update build files
------------------
Key: EXTVAL-136
URL: https://issues.apache.org/jira/browse/EXTVAL-136
Project: MyFaces Extensions Validator
Issue Type: Improvement
Affects Versions: 2.0.4, 1.2.4
Reporter: Gerhard Petracek
Priority: Minor
we have to remove the workarounds in the build files which aren't needed any
longer - esp. scope compile -> provided
otherwise there are e.g. issues if newer versions of transitive dependencies
are used in a maven build.
workaround:
exclude transitive dependencies - e.g.:
<dependency>
<groupId>org.apache.myfaces.extensions.validator.validation-modules</groupId>
<artifactId>myfaces-extval-property-validation</artifactId>
<version>...</version>
<scope>compile</scope>
<exclusions>
<exclusion>
<groupId>javax.persistence</groupId>
<artifactId>persistence-api</artifactId>
</exclusion>
</exclusions>
</dependency>
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira