Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Add other hibernate-validator features
  • Loading branch information
jbonofre committed Oct 19, 2025
commit b1031dbea3a03fa09d872236e4db925376825cf9
21 changes: 20 additions & 1 deletion assemblies/features/enterprise/src/main/feature/feature.xml
Original file line number Diff line number Diff line change
Expand Up @@ -191,14 +191,33 @@ com.atomikos.icatch.log_base_dir=${karaf.data}/atomikos
<bundle>mvn:org.hibernate/hibernate-envers/${hibernate.version}</bundle>
</feature>

<feature name="hibernate-validator" version="${hibernate.validator.version}" description="">
<feature name="hibernate-validator" version="${hibernate.validator.version}">
<bundle>mvn:org.hibernate.validator/hibernate-validator/${hibernate.validator.version}</bundle>
<bundle>mvn:jakarta.validation/jakarta.validation-api/3.0.0</bundle>
<bundle>mvn:org.jboss.logging/jboss-logging/3.4.1.Final</bundle>
<bundle>mvn:com.fasterxml/classmate/1.5.1</bundle>
<bundle>mvn:jakarta.el/jakarta.el-api/4.0.0</bundle>
<bundle>mvn:org.glassfish/jakarta.el/4.0.1</bundle>
</feature>
<feature name="hibernate-validator-joda-time" version="${hibernate.validator.version}">
<feature>hibernate-validator</feature>
<bundle>mvn:joda-time/joda-time/2.9.7</bundle>
</feature>
<feature name="hibernate-validator-javax-money" version="${hibernate.validator.version}">
<feature>hibernate-validator</feature>
<bundle>mvn:javax.money/money-api/1.0.1</bundle>
<bundle>mvn:org.javamoney/moneta/1.1</bundle>
<bundle>mvn:javax.annotation/javax.annotation-api/1.3.2</bundle>
</feature>
<feature name="hibernate-validator-groovy" version="${hibernate.validator.version}">
<feature>hibernate-validator</feature>
<bundle>mvn:org.codehaus.groovy/groovy-all/2.4.12</bundle>
</feature>
<feature name="hibernate-validator-paranamer" version="${hibernate.validator.version}">
<feature prerequisite="true">wrap</feature>
<feature>hibernate-validator</feature>
<bundle>wrap:mvn:com.thoughtworks.paranamer/paranamer/2.8</bundle>
</feature>"

<feature name="eclipselink" description="Eclipselink JPA persistence engine support" version="${eclipselink.version}">
<details>Eclipselink persistence engine.</details>
Expand Down
Loading