2011-04-07 21:59:02 -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
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
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
|
|
|
|
under the License.
|
|
|
|
-->
|
|
|
|
<!--
|
|
|
|
Maven release plugin requires the project tag to be on a single line.
|
|
|
|
-->
|
|
|
|
<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">
|
|
|
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
<groupId>org.apache.openjpa</groupId>
|
|
|
|
<artifactId>openjpa-tools</artifactId>
|
2022-03-16 04:25:57 -04:00
|
|
|
<version>3.2.3-SNAPSHOT</version>
|
2011-04-07 21:59:02 -04:00
|
|
|
<relativePath>../pom.xml</relativePath>
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
<artifactId>openjpa-maven-plugin</artifactId>
|
|
|
|
<packaging>maven-plugin</packaging>
|
2018-10-02 08:32:32 -04:00
|
|
|
|
2011-04-07 21:59:02 -04:00
|
|
|
<name>OpenJPA Maven Plugin</name>
|
|
|
|
<description>
|
2018-10-02 08:32:32 -04:00
|
|
|
OpenJPA tasks for enhancing, SQL creation and schema mapping creation using
|
2011-04-07 21:59:02 -04:00
|
|
|
Apache maven (see http://maven.apache.org).
|
|
|
|
</description>
|
|
|
|
<inceptionYear>2011</inceptionYear>
|
2018-10-18 01:38:31 -04:00
|
|
|
<properties>
|
|
|
|
<checkstyle.suppressions.location>${project.basedir}${file.separator}..${file.separator}..${file.separator}openjpa-project${file.separator}suppressions.xml</checkstyle.suppressions.location>
|
|
|
|
<min.maven.version>3.3.9</min.maven.version>
|
|
|
|
</properties>
|
2011-04-07 21:59:02 -04:00
|
|
|
<prerequisites>
|
2018-10-18 01:38:31 -04:00
|
|
|
<maven>${min.maven.version}</maven>
|
2011-04-07 21:59:02 -04:00
|
|
|
</prerequisites>
|
|
|
|
|
|
|
|
<developers>
|
|
|
|
<developer>
|
|
|
|
<id>rahul</id>
|
|
|
|
<name>Rahul Thakur</name>
|
|
|
|
<email>rahul@codehaus.org</email>
|
|
|
|
<roles>
|
|
|
|
<role>Developer</role>
|
|
|
|
</roles>
|
|
|
|
<timezone>+12</timezone>
|
|
|
|
</developer>
|
|
|
|
<developer>
|
|
|
|
<id>msx</id>
|
|
|
|
<name>Mark Struberg</name>
|
|
|
|
<email>struberg@yahoo.de</email>
|
|
|
|
<roles>
|
|
|
|
<role>Developer</role>
|
|
|
|
</roles>
|
|
|
|
<timezone>+1</timezone>
|
|
|
|
</developer>
|
|
|
|
</developers>
|
2016-01-16 05:36:02 -05:00
|
|
|
|
2011-04-07 21:59:02 -04:00
|
|
|
<dependencies>
|
|
|
|
<!-- dependencies needed for building maven plugins -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven</groupId>
|
|
|
|
<artifactId>maven-plugin-api</artifactId>
|
2018-10-18 01:38:31 -04:00
|
|
|
<version>${min.maven.version}</version>
|
2011-04-07 21:59:02 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven</groupId>
|
2018-10-18 01:38:31 -04:00
|
|
|
<artifactId>maven-compat</artifactId>
|
|
|
|
<version>${min.maven.version}</version>
|
2011-04-07 21:59:02 -04:00
|
|
|
</dependency>
|
2016-01-16 05:36:02 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven.plugin-tools</groupId>
|
|
|
|
<artifactId>maven-plugin-annotations</artifactId>
|
2018-10-18 01:38:31 -04:00
|
|
|
<version>3.5.2</version>
|
2016-01-16 05:36:02 -05:00
|
|
|
<scope>provided</scope> <!-- annotations are only needed to build the plugin -->
|
|
|
|
</dependency>
|
2011-04-07 21:59:02 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.codehaus.plexus</groupId>
|
|
|
|
<artifactId>plexus-utils</artifactId>
|
2018-10-18 01:38:31 -04:00
|
|
|
<version>3.1.0</version>
|
2011-04-07 21:59:02 -04:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- dependencies for OpenJPA itself -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.openjpa</groupId>
|
|
|
|
<artifactId>openjpa-kernel</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.openjpa</groupId>
|
|
|
|
<artifactId>openjpa-jdbc</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.openjpa</groupId>
|
|
|
|
<artifactId>openjpa-persistence</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
2011-12-07 11:05:24 -05:00
|
|
|
<dependency>
|
|
|
|
<!-- needed for db specific hooks -->
|
|
|
|
<groupId>org.apache.openjpa</groupId>
|
|
|
|
<artifactId>openjpa-persistence-jdbc</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
|
2011-04-07 21:59:02 -04:00
|
|
|
<dependency>
|
2020-02-29 10:05:56 -05:00
|
|
|
<groupId>org.apache.geronimo.specs</groupId>
|
|
|
|
<artifactId>geronimo-jpa_2.2_spec</artifactId>
|
2011-04-07 21:59:02 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.geronimo.specs</groupId>
|
2016-09-21 11:43:11 -04:00
|
|
|
<artifactId>geronimo-validation_1.1_spec</artifactId>
|
2011-04-07 21:59:02 -04:00
|
|
|
</dependency>
|
2011-12-27 05:59:45 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.bval</groupId>
|
|
|
|
<artifactId>org.apache.bval.bundle</artifactId>
|
|
|
|
</dependency>
|
2011-04-07 21:59:02 -04:00
|
|
|
<dependency>
|
2018-10-18 01:38:31 -04:00
|
|
|
<groupId>org.apache.logging.log4j</groupId>
|
|
|
|
<artifactId>log4j-core</artifactId>
|
2011-04-07 21:59:02 -04:00
|
|
|
<scope>runtime</scope>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- For Tests -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven.plugin-testing</groupId>
|
|
|
|
<artifactId>maven-plugin-testing-harness</artifactId>
|
2018-10-18 01:38:31 -04:00
|
|
|
<version>3.3.0</version>
|
2011-04-07 21:59:02 -04:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<licenses>
|
|
|
|
<license>
|
|
|
|
<name>Apache License 2.0</name>
|
|
|
|
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
|
|
|
|
<distribution>repo</distribution>
|
|
|
|
</license>
|
|
|
|
</licenses>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
2016-01-16 05:36:02 -05:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-plugin-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<skipErrorNoDescriptorsFound>true</skipErrorNoDescriptorsFound>
|
|
|
|
</configuration>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>mojo-descriptor</id>
|
|
|
|
<goals>
|
|
|
|
<goal>descriptor</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
<execution>
|
|
|
|
<id>help-goal</id>
|
|
|
|
<goals>
|
|
|
|
<goal>helpmojo</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
2011-04-07 21:59:02 -04:00
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-invoker-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<debug>true</debug>
|
|
|
|
<projectsDirectory>src/it</projectsDirectory>
|
|
|
|
<cloneProjectsTo>${project.build.directory}/it</cloneProjectsTo>
|
|
|
|
<localRepositoryPath>${project.build.directory}/local-repo</localRepositoryPath>
|
|
|
|
<settingsFile>src/it/settings.xml</settingsFile>
|
|
|
|
<pomIncludes>
|
|
|
|
<pomInclude>*/pom.xml</pomInclude>
|
|
|
|
</pomIncludes>
|
2016-01-16 05:36:02 -05:00
|
|
|
<postBuildHookScript>verify</postBuildHookScript>
|
2011-04-07 21:59:02 -04:00
|
|
|
</configuration>
|
2018-10-18 01:38:31 -04:00
|
|
|
<dependencies>
|
|
|
|
</dependencies>
|
2011-04-07 21:59:02 -04:00
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>integration-test</id>
|
|
|
|
<goals>
|
|
|
|
<goal>install</goal>
|
|
|
|
<goal>run</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2020-09-06 16:06:09 -04:00
|
|
|
|
|
|
|
<reporting>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-plugin-plugin</artifactId>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</reporting>
|
2011-04-07 21:59:02 -04:00
|
|
|
</project>
|