1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3 <modelVersion>4.0.0</modelVersion>
4 <groupId>org.hibernate.osgi</groupId>
5 <artifactId>managed-jpa</artifactId>
6 <version>1.0.0</version>
7 <packaging>bundle</packaging>
10 <h4mp.version>@project.version@</h4mp.version>
15 <groupId>org.hibernate.javax.persistence</groupId>
16 <artifactId>hibernate-jpa-2.1-api</artifactId>
17 <version>1.0.0.Final</version>
20 <groupId>org.osgi</groupId>
21 <artifactId>org.osgi.core</artifactId>
22 <version>4.3.1</version>
25 <groupId>org.osgi</groupId>
26 <artifactId>org.osgi.enterprise</artifactId>
27 <version>4.2.0</version>
30 <groupId>org.apache.karaf.shell</groupId>
31 <artifactId>org.apache.karaf.shell.console</artifactId>
32 <version>2.3.0</version>
35 <groupId>com.h2database</groupId>
36 <artifactId>h2</artifactId>
37 <version>1.4.187</version>
44 <groupId>org.apache.felix</groupId>
45 <artifactId>maven-bundle-plugin</artifactId>
46 <extensions>true</extensions>
49 <Bundle-SymbolicName>org.hibernate.osgi.managed-jpa</Bundle-SymbolicName>
50 <Bundle-Name>managed-jpa</Bundle-Name>
51 <Bundle-Version>1.0.0</Bundle-Version>
53 org.hibernate.osgitest,
54 org.hibernate.osgitest.entity
57 org.apache.felix.service.command,
58 org.apache.felix.gogo.commands,
59 org.apache.karaf.shell.console,
60 org.apache.karaf.shell.commands,
61 javax.persistence;version="[1.0.0,2.1.0]",
62 <!-- Needed for proxying's Javassist enhancement during runtime -->
67 <Meta-Persistence>META-INF/persistence.xml</Meta-Persistence>
72 <groupId>de.juplo</groupId>
73 <artifactId>hibernate4-maven-plugin</artifactId>
74 <version>${h4mp.version}</version>
83 <url>jdbc:h2:mem:db1;MVCC=TRUE</url>