HHH-13022 Add missing versions to internal OSGi feature dependencies

This commit is contained in:
Yoann Rodière 2018-10-16 10:19:32 +02:00 committed by Guillaume Smet
parent 9726fde68d
commit 0a13b8d640
1 changed files with 6 additions and 2 deletions

View File

@ -139,14 +139,18 @@ karaf {
description = 'Feature for easily adding Envers support to hibernate-orm'
includeProject = false
configurations 'hibernateEnvers'
feature 'hibernate-orm'
feature('hibernate-orm') {
version = project.version
}
}
feature {
name = 'hibernate-infinispan'
description = 'Feature for easily adding Infinispan-based caching support to hibernate-orm'
includeProject = false
configurations 'hibernateInfinispan'
feature 'hibernate-orm'
feature('hibernate-orm') {
version = project.version
}
}
}
}