|
|
|
|
|
|
features Just noticed that the hibernate-jpa-aries feature is missing several dependency bundles . xml currently uses an older version of Ignore the bit about my fork and instead upgrade Aries JPA that's guaranteed to not . My PR was merged and *should* work with .
{code} <bundle start-level="30">mvn:org.hibernate.javax.persistence/hibernate-jpa-2.1-api/1.0.0.Final</bundle> <!-- No container currently supports JPA 2.1. Try upgrading Clone and build Aries from the following fork (upgrades to a later JPA 2. 1 ) . Aries should be upgrading as soon as the spec is out. https://github.com/brmeyer/aries/tree/jpa21 --> <bundle start-level="30">mvn:org.apache.aries/org.apache.aries.util/1.1.1-SNAPSHOT</bundle> <bundle start-level="30">mvn:org.apache.aries.jpa/org.apache.aries.jpa.api/1. 0. x or 1-SNAPSHOT</bundle> <bundle start-level="30">mvn:org.apache.aries.jpa/org.apache.aries.jpa.blueprint.aries/1.0. 2 -SNAPSHOT</bundle> <bundle start-level="30">mvn:org . apache.aries.jpa/org.apache.aries.jpa.container/1. 0. x and re 1 - test SNAPSHOT</bundle> <bundle start-level="30">mvn:org . apache.aries.jpa/org.apache.aries.jpa.container.context/1.0.2-SNAPSHOT</bundle>
<!-- JNDI --> <bundle start-level="30">mvn:org.apache.aries/org.apache.aries.util/1.0.0</bundle> <bundle start-level="30">mvn:org.apache.aries.jndi/org.apache.aries.jndi.api/1.0.0</bundle> <bundle start-level="30">mvn:org.apache.aries.jndi/org.apache.aries.jndi.core/1.0.0</bundle> <bundle start-level="30">mvn:org.apache.aries.jndi/org.apache.aries.jndi.rmi/1.0.0</bundle> <bundle start-level="30">mvn:org.apache.aries.jndi/org.apache.aries.jndi.url/1.0.0</bundle> <bundle start-level="30">mvn:org.apache.aries.jndi/org.apache.aries.jndi.legacy.support/1.0.0</bundle> {code}
If I remember correctly, the following was also needed. These may be needed by the other 2 features as well:
{code} <!-- Taken from Karaf-Tutorial --> <bundle>mvn:commons-collections/commons-collections/3.2.1</bundle> <bundle>mvn:commons-pool/commons-pool/1.5.4</bundle> <bundle>mvn:commons-dbcp/commons-dbcp/1.4</bundle> <bundle>mvn:commons-lang/commons-lang/2.6</bundle> <bundle>wrap:mvn:net.sourceforge.serp/serp/1.13.1</bundle> {code}
com.fasterxml/classmate is also missing, but I can't remember why that was there...
|
|
|
|
|
|