]
Mario Fusco resolved DROOLS-397.
--------------------------------
Resolution: Done
Don't hard code versions in drools-osgi's
drools-karaf-features's pom
---------------------------------------------------------------------
Key: DROOLS-397
URL:
https://issues.jboss.org/browse/DROOLS-397
Project: Drools
Issue Type: Task
Reporter: Geoffrey De Smet
Assignee: Mario Fusco
Historically, there we no versions available as properties from the ip-bom, so we hard
coded them for karaff:
https://github.com/droolsjbpm/droolsjbpm-integration/blob/master/drools-o...
So we did:
{code}
<karaf.version.org.apache.camel>2.10.3</karaf.version.org.apache.camel>
{code}
But we extend the jboss-integration-platform-parent, so they are available:
https://github.com/jboss-integration/jboss-integration-platform-bom/blob/...
So now do:
{code}
<karaf.version.org.apache.camel>${version.org.apache.camel}</karaf.version.org.apache.camel>
{code}
etc.
Note: there are still a few special ones (the wrapper ones in that karaf features pom)
that you might want to keep hard coded to get osgi to work.