2006-11-12 06:44:59 -05:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<!--
|
2007-04-14 17:50:17 -04:00
|
|
|
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
|
2006-11-12 06:44:59 -05:00
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
2007-04-14 17:50:17 -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
|
|
|
|
under the License.
|
2006-11-12 06:44:59 -05:00
|
|
|
-->
|
2008-06-11 12:48:56 -04:00
|
|
|
<!--
|
|
|
|
Please keep the project tag on one line to avoid confusing
|
|
|
|
the release plugin.
|
|
|
|
-->
|
|
|
|
<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-05-14 14:42:48 -04:00
|
|
|
|
2006-10-28 00:06:11 -04:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2010-05-14 14:42:48 -04:00
|
|
|
|
2006-10-28 00:06:11 -04:00
|
|
|
<parent>
|
|
|
|
<groupId>org.apache.openjpa</groupId>
|
2007-05-09 18:23:54 -04:00
|
|
|
<artifactId>openjpa-parent</artifactId>
|
2016-08-18 08:44:03 -04:00
|
|
|
<version>3.0.0-SNAPSHOT</version>
|
2006-10-28 00:06:11 -04:00
|
|
|
</parent>
|
2010-05-14 14:42:48 -04:00
|
|
|
|
2010-08-10 08:54:23 -04:00
|
|
|
<groupId>org.apache.openjpa</groupId>
|
2010-05-14 14:42:48 -04:00
|
|
|
<artifactId>openjpa-examples</artifactId>
|
2010-07-30 09:12:06 -04:00
|
|
|
<packaging>pom</packaging>
|
2010-05-14 14:42:48 -04:00
|
|
|
|
|
|
|
<name>OpenJPA Examples</name>
|
2010-08-10 08:54:23 -04:00
|
|
|
<description>OpenJPA Examples</description>
|
2010-05-14 14:42:48 -04:00
|
|
|
|
2010-07-30 09:12:06 -04:00
|
|
|
<properties>
|
|
|
|
<openjpa.Log>DefaultLevel=WARN</openjpa.Log>
|
2013-07-19 18:10:10 -04:00
|
|
|
<checkstyle.config.location>${project.basedir}${file.separator}..${file.separator}..${file.separator}openjpa-project${file.separator}checkstyle.xml</checkstyle.config.location>
|
|
|
|
<checkstyle.suppressions.location>${project.basedir}${file.separator}..${file.separator}..${file.separator}openjpa-project${file.separator}suppressions.xml</checkstyle.suppressions.location>
|
2010-07-30 09:12:06 -04:00
|
|
|
</properties>
|
2010-05-14 14:42:48 -04:00
|
|
|
|
2010-07-30 09:12:06 -04:00
|
|
|
<modules>
|
|
|
|
<module>simple</module>
|
|
|
|
<module>image-gallery</module>
|
|
|
|
<module>openbooks</module>
|
|
|
|
</modules>
|
2010-10-18 13:03:19 -04:00
|
|
|
|
2012-03-12 01:02:37 -04:00
|
|
|
<profiles>
|
|
|
|
<profile>
|
|
|
|
<id>test-dynamic-enhancer</id>
|
|
|
|
<properties>
|
|
|
|
<policy.file>${basedir}/../../openjpa-persistence-jdbc/src/test/resources/j2.security.test.policy</policy.file>
|
|
|
|
</properties>
|
|
|
|
</profile>
|
|
|
|
</profiles>
|
|
|
|
|
2010-10-18 13:03:19 -04:00
|
|
|
<build>
|
|
|
|
<pluginManagement>
|
|
|
|
<plugins>
|
|
|
|
<!-- disable creating javadoc for these modules -->
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<skip>true</skip>
|
|
|
|
</configuration>
|
|
|
|
<inherited>true</inherited>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</pluginManagement>
|
|
|
|
</build>
|
2010-07-30 09:12:06 -04:00
|
|
|
</project>
|