| POM: |
Show
hide
<?xml version="1.0" encoding="UTF-8"?>
<!--
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- EasyBeans
- Copyright (C) 2010 Bull S.A.S.
- Contact: easybeans@ow2.org
-
- This library is free software; you can redistribute it and/or
- modify it under the terms of the GNU Lesser General Public
- License as published by the Free Software Foundation; either
- version 2.1 of the License, or (at your option) any later version.
-
- This library is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- Lesser General Public License for more details.
-
- You should have received a copy of the GNU Lesser General Public
- License along with this library; if not, write to the Free Software
- Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- $Id: pom.xml 5886 2011-05-05 15:42:19Z benoitf $
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-->
<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/maven-v4_0_0.xsd">
<parent>
<groupId>org.ow2.easybeans.osgi</groupId>
<artifactId>easybeans-modules-persistence-eclipselink</artifactId>
<version>1.2.1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>easybeans-modules-persistence-eclipselink-2.x</artifactId>
<packaging>bundle</packaging>
<name>EasyBeans/OSGi :: Modules :: Persistence :: EclipseLink :: v2.x</name>
<description>Easybeans EclipseLink 2.x OSGi bundle</description>
<build>
<plugins>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<extensions>true</extensions>
<configuration>
<instructions>
<Bundle-SymbolicName>org.ow2.easybeans.osgi.persistence.eclipselink.v2.0.0</Bundle-SymbolicName>
<Bundle-Activator>org.ow2.easybeans.osgi.eclipselink.EclipseLinkActivator</Bundle-Activator>
<Private-Package><![CDATA[
org.ow2.easybeans.osgi.eclipselink
]]>
</Private-Package>
<Embed-StripGroup>true</Embed-StripGroup>
<Embed-Directory>dependencies</Embed-Directory>
<Embed-Dependency>*;scope=compile|runtime;inline=true;artifactId=!eclipselink</Embed-Dependency>
<Import-Package><![CDATA[javax.persistence.*;version=2.0.0,
commonj.sdo.*;resolution:=optional,
javax.annotation.processing;resolution:=optional,
javax.tools;resolution:=optional,
javax.lang.model.*;resolution:=optional,
com.sun.codemodel.*;resolution:=optional,
com.sun.tools.xjc.*;resolution:=optional,
org.apache.tools.ant.*;resolution:=optional,
oracle.*;resolution:=optional,
javax.crypto.*;resolution:=optional,
javax.validation.*;resolution:=optional,
*]]>
</Import-Package>
<DynamicImport-Package>*</DynamicImport-Package>
<Export-Package><![CDATA[
org.eclipse.persistence.*,
org.ow2.easybeans.osgi.eclipselink.deployment,
org.ow2.easybeans.persistence.eclipselink,
xsd.*,
commonj.sdo.*
]]>
</Export-Package>
<!-- Add version used by some components to know the version -->
<Implementation-Version>${project.version}</Implementation-Version>
</instructions>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<!-- EclipeLink and dependencies -->
<!-- Eclipselink non OSGi -->
<dependency>
<groupId>org.eclipse.persistence</groupId>
<artifactId>eclipselink</artifactId>
<version>${eclipselink2.version}</version>
</dependency>
<dependency>
<groupId>org.ow2.easybeans</groupId>
<artifactId>easybeans-jpa-eclipselink-glue</artifactId>
<version>${easybeans.version}</version>
</dependency>
</dependencies>
</project>
|