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>unmanaged-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>org.hibernate</groupId>
36 <artifactId>hibernate-entitymanager</artifactId>
37 <version>4.3.9.Final</version>
40 <groupId>com.h2database</groupId>
41 <artifactId>h2</artifactId>
42 <version>1.4.187</version>
50 <groupId>org.apache.felix</groupId>
51 <artifactId>maven-bundle-plugin</artifactId>
52 <extensions>true</extensions>
55 <Bundle-SymbolicName>org.hibernate.osgi.unmanaged-jpa</Bundle-SymbolicName>
56 <Bundle-Name>unmanaged-jpa</Bundle-Name>
57 <Bundle-Version>1.0.0</Bundle-Version>
59 org.hibernate.osgitest,
60 org.hibernate.osgitest.entity
63 org.apache.felix.service.command,
64 org.apache.felix.gogo.commands,
65 org.apache.karaf.shell.console,
66 org.apache.karaf.shell.commands,
68 javax.persistence;version="[1.0.0,2.1.0]",
69 <!-- Needed for proxying's Javassist enhancement during runtime -->
78 <groupId>de.juplo</groupId>
79 <artifactId>hibernate4-maven-plugin</artifactId>
80 <version>${h4mp.version}</version>