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>
|
2020-07-07 05:19:15 -04:00
|
|
|
<version>3.1.3-SNAPSHOT</version>
|
2008-07-16 20:09:55 -04:00
|
|
|
</parent>
|
2010-08-06 12:22:21 -04:00
|
|
|
|
|
|
|
<artifactId>openjpa-kernel</artifactId>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
<name>OpenJPA Kernel</name>
|
|
|
|
<description>OpenJPA Kernel</description>
|
|
|
|
|
2020-03-15 04:59:45 -04:00
|
|
|
<properties>
|
|
|
|
<automatic-module-name>org.apache.openjpa.kernel</automatic-module-name>
|
|
|
|
</properties>
|
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>
|
2018-09-02 09:59:07 -04:00
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
<artifactId>commons-pool2</artifactId>
|
2008-07-16 20:09:55 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.ibm.websphere</groupId>
|
2018-10-18 01:38:31 -04:00
|
|
|
<artifactId>uow_api</artifactId>
|
|
|
|
<version>6</version>
|
2008-07-16 20:09:55 -04:00
|
|
|
<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>
|
2013-10-15 16:32:07 -04:00
|
|
|
<groupId>org.apache.xbean</groupId>
|
2020-04-27 10:52:11 -04:00
|
|
|
<artifactId>xbean-asm8-shaded</artifactId>
|
2020-03-17 12:17:19 -04:00
|
|
|
<version>${xbean.version}</version>
|
2011-12-02 01:42:55 -05:00
|
|
|
</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>
|
2016-05-10 17:36:15 -04:00
|
|
|
<version>2.6</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>
|
2018-10-18 01:38:31 -04:00
|
|
|
<jdkVersion>${java.class.version}</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>
|
2018-10-18 01:38:31 -04:00
|
|
|
<target>
|
2009-06-18 13:36:26 -04:00
|
|
|
<java classname="org.apache.openjpa.ee.WASManagedRuntime" classpathref="maven.runtime.classpath" />
|
2018-10-18 01:38:31 -04:00
|
|
|
</target>
|
2009-06-18 13:36:26 -04:00
|
|
|
</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>
|
2018-10-18 01:38:31 -04:00
|
|
|
<target>
|
2009-06-18 13:36:26 -04:00
|
|
|
<java classname="org.apache.openjpa.util.ProxyManagerImpl" classpathref="maven.runtime.classpath">
|
2008-07-16 20:09:55 -04:00
|
|
|
<arg line="-utils 5" />
|
|
|
|
</java>
|
2018-10-18 01:38:31 -04:00
|
|
|
</target>
|
2009-06-18 13:36:26 -04:00
|
|
|
</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>
|
2020-05-07 03:46:06 -04:00
|
|
|
|
2008-07-16 20:09:55 -04:00
|
|
|
<repositories>
|
|
|
|
<repository>
|
2018-10-18 01:38:31 -04:00
|
|
|
<id>seasar-repo</id>
|
|
|
|
<name>seasar repository</name>
|
|
|
|
<url>https://www.seasar.org/maven/maven2</url>
|
2008-07-16 20:09:55 -04:00
|
|
|
</repository>
|
|
|
|
</repositories>
|
|
|
|
</project>
|