blob: 53acad6132fd59af38754cc828d3844d5e813b46 [file] [log] [blame]
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.apache.aries.jpa.example</groupId>
<artifactId>org.apache.aries.jpa.example.parent</artifactId>
<version>2.1.0</version>
<relativePath>..</relativePath>
</parent>
<artifactId>org.apache.aries.jpa.example.tasklist.model</artifactId>
<name>Apache Aries JPA example tasklist model</name>
<packaging>bundle</packaging>
<dependencies>
<dependency>
<groupId>org.hibernate.javax.persistence</groupId>
<artifactId>hibernate-jpa-2.1-api</artifactId>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<version>2.5.4</version>
<extensions>true</extensions>
<inherited>true</inherited>
<configuration>
<instructions>
<Meta-Persistence>META-INF/persistence.xml</Meta-Persistence>
<!-- Needed for runtime enhancement when using hibernate -->
<Dynamic-Import-Package>*, org.hibernate.proxy, javassist.util.proxy</Dynamic-Import-Package>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
</project>