2008-07-16 20:09:55 -04:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<!--
|
|
|
|
Licensed to the Apache Software Foundation (ASF) under one
|
|
|
|
or more contributor license agreements. See the NOTICE file
|
|
|
|
distributed with this work for additional information
|
|
|
|
regarding copyright ownership. The ASF licenses this file
|
|
|
|
to you under the Apache License, Version 2.0 (the
|
|
|
|
"License"); you may not use this file except in compliance
|
|
|
|
with the License. You may obtain a copy of the License at
|
2011-12-02 01:42:55 -05:00
|
|
|
|
2008-07-16 20:09:55 -04:00
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
2011-12-02 01:42:55 -05:00
|
|
|
|
2008-07-16 20:09:55 -04:00
|
|
|
Unless required by applicable law or agreed to in writing,
|
|
|
|
software distributed under the License is distributed on an
|
|
|
|
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
|
|
KIND, either express or implied. See the License for the
|
|
|
|
specific language governing permissions and limitations
|
2011-12-02 01:42:55 -05:00
|
|
|
under the License.
|
2008-07-16 20:09:55 -04:00
|
|
|
-->
|
2011-12-02 01:42:55 -05:00
|
|
|
<!--
|
|
|
|
Maven release plugin requires the project tag to be on a single line.
|
2008-07-16 20:09:55 -04:00
|
|
|
-->
|
|
|
|
<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">
|
2010-08-06 12:22:21 -04:00
|
|
|
|
2008-07-16 20:09:55 -04:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2010-08-06 12:22:21 -04:00
|
|
|
|
2008-07-16 20:09:55 -04:00
|
|
|
<parent>
|
|
|
|
<groupId>org.apache.openjpa</groupId>
|
|
|
|
<artifactId>openjpa-parent</artifactId>
|
2012-02-15 19:30:29 -05:00
|
|
|
<version>2.2.1-SNAPSHOT</version>
|
2008-07-16 20:09:55 -04:00
|
|
|
</parent>
|
2010-08-06 12:22:21 -04:00
|
|
|
|
|
|
|
<groupId>org.apache.openjpa</groupId>
|
|
|
|
<artifactId>openjpa-kernel</artifactId>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
<name>OpenJPA Kernel</name>
|
|
|
|
<description>OpenJPA Kernel</description>
|
|
|
|
|
2008-07-16 20:09:55 -04:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.openjpa</groupId>
|
|
|
|
<artifactId>openjpa-lib</artifactId>
|
2010-08-19 13:31:55 -04:00
|
|
|
<version>${project.version}</version>
|
2008-07-16 20:09:55 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.geronimo.specs</groupId>
|
|
|
|
<artifactId>geronimo-jms_1.1_spec</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.geronimo.specs</groupId>
|
|
|
|
<artifactId>geronimo-jta_1.1_spec</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>commons-pool</groupId>
|
|
|
|
<artifactId>commons-pool</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.ibm.websphere</groupId>
|
|
|
|
<artifactId>websphere_uow_api</artifactId>
|
|
|
|
<version>0.0.1</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2008-12-19 06:36:13 -05:00
|
|
|
<dependency>
|
2010-10-29 10:00:35 -04:00
|
|
|
<groupId>org.apache.ant</groupId>
|
2008-12-19 06:36:13 -05:00
|
|
|
<artifactId>ant</artifactId>
|
|
|
|
<scope>provided</scope>
|
2011-12-02 01:42:55 -05:00
|
|
|
</dependency>
|
2011-02-08 16:28:30 -05:00
|
|
|
<!-- for osgi ManagedRuntime implementation, -->
|
|
|
|
<!-- we pull in OSGi core at the same level as Apache Aries -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.osgi</groupId>
|
|
|
|
<artifactId>org.osgi.core</artifactId>
|
|
|
|
<version>4.2.0</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
2011-12-02 01:42:55 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>asm</groupId>
|
|
|
|
<artifactId>asm</artifactId>
|
|
|
|
<version>3.2</version>
|
|
|
|
</dependency>
|
2008-07-16 20:09:55 -04:00
|
|
|
</dependencies>
|
2010-08-06 12:22:21 -04:00
|
|
|
|
2008-07-16 20:09:55 -04:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
<artifactId>javacc-maven-plugin</artifactId>
|
2008-11-21 15:16:32 -05:00
|
|
|
<version>2.4</version>
|
2008-07-16 20:09:55 -04:00
|
|
|
<executions>
|
|
|
|
<execution>
|
2008-11-21 15:16:32 -05:00
|
|
|
<id>jjtree-javacc-jpql</id>
|
2008-07-16 20:09:55 -04:00
|
|
|
<phase>generate-sources</phase>
|
|
|
|
<configuration>
|
|
|
|
<buildNodeFiles>false</buildNodeFiles>
|
2010-02-18 21:52:51 -05:00
|
|
|
<jdkVersion>1.6</jdkVersion>
|
2008-07-16 20:09:55 -04:00
|
|
|
</configuration>
|
|
|
|
<goals>
|
2008-11-21 15:16:32 -05:00
|
|
|
<goal>jjtree-javacc</goal>
|
2008-07-16 20:09:55 -04:00
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
2009-02-04 10:12:58 -05:00
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
2008-07-16 20:09:55 -04:00
|
|
|
<artifactId>maven-antrun-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
2009-06-18 13:36:26 -04:00
|
|
|
<id>add-was-interfaces</id>
|
|
|
|
<phase>process-classes</phase>
|
|
|
|
<configuration>
|
|
|
|
<tasks>
|
|
|
|
<java classname="org.apache.openjpa.ee.WASManagedRuntime" classpathref="maven.runtime.classpath" />
|
|
|
|
</tasks>
|
|
|
|
</configuration>
|
|
|
|
<goals>
|
|
|
|
<goal>run</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
2008-07-16 20:09:55 -04:00
|
|
|
<execution>
|
2009-06-18 13:36:26 -04:00
|
|
|
<id>generate-standard-sco-proxies</id>
|
|
|
|
<phase>process-classes</phase>
|
|
|
|
<configuration>
|
|
|
|
<tasks>
|
|
|
|
<java classname="org.apache.openjpa.util.ProxyManagerImpl" classpathref="maven.runtime.classpath">
|
2008-07-16 20:09:55 -04:00
|
|
|
<arg line="-utils 5" />
|
|
|
|
</java>
|
2009-06-18 13:36:26 -04:00
|
|
|
</tasks>
|
|
|
|
</configuration>
|
|
|
|
<goals>
|
|
|
|
<goal>run</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
2008-07-16 20:09:55 -04:00
|
|
|
</executions>
|
|
|
|
</plugin>
|
2009-06-19 11:43:46 -04:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-jar-plugin</artifactId>
|
2010-01-25 16:50:14 -05:00
|
|
|
<executions>
|
2010-08-06 12:22:21 -04:00
|
|
|
<execution>
|
|
|
|
<id>default-jar</id>
|
|
|
|
<goals>
|
|
|
|
<goal>jar</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<archive>
|
|
|
|
<manifest>
|
|
|
|
<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
|
|
|
|
</manifest>
|
|
|
|
<manifestEntries>
|
|
|
|
<Implementation-Build>${buildNumber}</Implementation-Build>
|
|
|
|
<Agent-Class>org.apache.openjpa.enhance.InstrumentationFactory</Agent-Class>
|
|
|
|
</manifestEntries>
|
|
|
|
</archive>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
2010-01-25 16:50:14 -05:00
|
|
|
<execution>
|
|
|
|
<id>attach-tests</id>
|
|
|
|
<goals>
|
|
|
|
<goal>test-jar</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
2009-06-19 11:43:46 -04:00
|
|
|
</plugin>
|
2008-07-16 20:09:55 -04:00
|
|
|
</plugins>
|
|
|
|
</build>
|
2010-08-06 12:22:21 -04:00
|
|
|
|
2008-07-16 20:09:55 -04:00
|
|
|
<repositories>
|
2011-12-02 01:42:55 -05:00
|
|
|
<!--
|
2008-07-16 20:09:55 -04:00
|
|
|
Internal (in SVN) repository which contains jar files that are not
|
|
|
|
publicly available and cannot be re-distributed.
|
|
|
|
-->
|
|
|
|
<repository>
|
|
|
|
<id>openjpa-internal</id>
|
|
|
|
<name>Internal repository</name>
|
|
|
|
<url>file://${basedir}/internal-repository</url>
|
|
|
|
</repository>
|
|
|
|
</repositories>
|
|
|
|
</project>
|