Added tutorials of the hibernate-release 4.3.9.Final as integration-tests
[hibernate4-maven-plugin] / src / it / tutorials / osgi / unmanaged-jpa / pom.xml
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>
8
9         <dependencies>
10                 <dependency>
11             <groupId>org.hibernate.javax.persistence</groupId>
12             <artifactId>hibernate-jpa-2.1-api</artifactId>
13             <version>1.0.0.Final</version>
14         </dependency>
15                 <dependency>
16                         <groupId>org.osgi</groupId>
17                         <artifactId>org.osgi.core</artifactId>
18                         <version>4.3.1</version>
19                 </dependency>
20         <dependency>
21             <groupId>org.osgi</groupId>
22             <artifactId>org.osgi.enterprise</artifactId>
23             <version>4.2.0</version>
24         </dependency>
25         <dependency>
26             <groupId>org.apache.karaf.shell</groupId>
27             <artifactId>org.apache.karaf.shell.console</artifactId>
28             <version>2.3.0</version>
29         </dependency>
30         <dependency>
31             <groupId>org.hibernate</groupId>
32             <artifactId>hibernate-entitymanager</artifactId>
33             <version>4.3.0-SNAPSHOT</version>
34         </dependency>
35                 <dependency>
36                         <groupId>com.h2database</groupId>
37                         <artifactId>h2</artifactId>
38                         <version>1.3.170</version>
39                 </dependency>
40         
41         </dependencies>
42
43         <build>
44                 <plugins>
45                         <plugin>
46                                 <groupId>org.apache.felix</groupId>
47                                 <artifactId>maven-bundle-plugin</artifactId>
48                                 <extensions>true</extensions>
49                                 <configuration>
50                                         <instructions>
51                                                 <Bundle-SymbolicName>org.hibernate.osgi.unmanaged-jpa</Bundle-SymbolicName>
52                                                 <Bundle-Name>unmanaged-jpa</Bundle-Name>
53                                                 <Bundle-Version>1.0.0</Bundle-Version>
54                                                 <Export-Package>
55                                                     org.hibernate.osgitest,
56                                                         org.hibernate.osgitest.entity
57                                                 </Export-Package>
58                                                 <Import-Package>
59                                                     org.apache.felix.service.command,
60                             org.apache.felix.gogo.commands,
61                             org.apache.karaf.shell.console,
62                             org.apache.karaf.shell.commands,
63                             org.h2,
64                             javax.persistence;version="[1.0.0,2.1.0]",
65                             <!-- Needed for proxying's Javassist enhancement during runtime -->
66                             org.hibernate.proxy,
67                             javassist.util.proxy,
68                             * 
69                                                 </Import-Package>
70                                         </instructions>
71                                 </configuration>
72                         </plugin>
73                 </plugins>
74         </build>
75 </project>