mirror of https://github.com/apache/openjpa.git
170 lines
6.3 KiB
XML
170 lines
6.3 KiB
XML
|
<?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.
|
||
|
-->
|
||
|
<!--
|
||
|
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/xsd/maven-4.0.0.xsd">
|
||
|
<modelVersion>4.0.0</modelVersion>
|
||
|
|
||
|
<parent>
|
||
|
<groupId>org.apache.openjpa</groupId>
|
||
|
<artifactId>openjpa-parent</artifactId>
|
||
|
<version>2.1.0-SNAPSHOT</version>
|
||
|
</parent>
|
||
|
|
||
|
<groupId>org.apache.openjpa.openjpa-examples</groupId>
|
||
|
<artifactId>image-gallery</artifactId>
|
||
|
<packaging>jar</packaging>
|
||
|
|
||
|
<name>Apache OpenJPA :: Examples - image-gallery</name>
|
||
|
<url>http://openjpa.apache.org/samples.html</url>
|
||
|
|
||
|
<properties>
|
||
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||
|
<openjpa.Log>DefaultLevel=WARN</openjpa.Log>
|
||
|
<checkstyle.config.location>../../openjpa-project/checkstyle.xml</checkstyle.config.location>
|
||
|
<test.jvm.maxpermsize>256m</test.jvm.maxpermsize>
|
||
|
<test.jvm.maxheapsize>1024m</test.jvm.maxheapsize>
|
||
|
<test.jvm.arguments>-Xmx${test.jvm.maxheapsize} -XX:MaxPermSize=${test.jvm.maxpermsize}</test.jvm.arguments>
|
||
|
<surefire.jvm.args>${test.jvm.arguments}</surefire.jvm.args>
|
||
|
</properties>
|
||
|
|
||
|
<dependencies>
|
||
|
<!-- When using OpenJPA 2.0.0 with bval, commons-lang must be in the dependency -->
|
||
|
<!-- tree before openjpa-all-2.0.0 since openjpa-all bundles commons-lang 2.1 -->
|
||
|
<!-- and bval requires version 2.4 -->
|
||
|
<dependency>
|
||
|
<groupId>commons-lang</groupId>
|
||
|
<artifactId>commons-lang</artifactId>
|
||
|
<version>2.4</version>
|
||
|
<scope>test</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>commons-beanutils</groupId>
|
||
|
<artifactId>commons-beanutils</artifactId>
|
||
|
<version>1.8.3</version>
|
||
|
<scope>test</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.apache.geronimo.specs</groupId>
|
||
|
<artifactId>geronimo-validation_1.0_spec</artifactId>
|
||
|
<version>1.0</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.apache.bval</groupId>
|
||
|
<artifactId>org.apache.bval.bundle</artifactId>
|
||
|
<version>0.1-incubating-SNAPSHOT</version>
|
||
|
<scope>test</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.apache.openjpa</groupId>
|
||
|
<artifactId>openjpa-all</artifactId>
|
||
|
<version>${pom.version}</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.apache.derby</groupId>
|
||
|
<artifactId>derby</artifactId>
|
||
|
<version>10.5.3.0_1</version>
|
||
|
<scope>test</scope>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>junit</groupId>
|
||
|
<artifactId>junit</artifactId>
|
||
|
<version>3.8.1</version>
|
||
|
<scope>test</scope>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
|
||
|
<build>
|
||
|
<pluginManagement>
|
||
|
<plugins>
|
||
|
<plugin>
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-compiler-plugin</artifactId>
|
||
|
<version>2.1</version>
|
||
|
<configuration>
|
||
|
<source>1.6</source>
|
||
|
<target>1.6</target>
|
||
|
<!-- Disable the annotation processor for now due to a JDK 6 bug -->
|
||
|
<compilerArgument>-proc:none</compilerArgument>
|
||
|
</configuration>
|
||
|
</plugin>
|
||
|
<plugin>
|
||
|
<!-- The jar plugin builds a jar containing the image gallery classes -->
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-jar-plugin</artifactId>
|
||
|
<version>2.3</version>
|
||
|
<configuration>
|
||
|
<archive>
|
||
|
<manifest>
|
||
|
<addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
|
||
|
<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
|
||
|
</manifest>
|
||
|
</archive>
|
||
|
</configuration>
|
||
|
</plugin>
|
||
|
<plugin>
|
||
|
<!-- The surefire plugin is used to run the jUnit tests -->
|
||
|
<groupId>org.apache.maven.plugins</groupId>
|
||
|
<artifactId>maven-surefire-plugin</artifactId>
|
||
|
<version>2.4.3</version>
|
||
|
<configuration>
|
||
|
<argLine>${surefire.jvm.args}</argLine>
|
||
|
<useFile>false</useFile>
|
||
|
<trimStackTrace>false</trimStackTrace>
|
||
|
<useSystemClassLoader>true</useSystemClassLoader>
|
||
|
</configuration>
|
||
|
</plugin>
|
||
|
</plugins>
|
||
|
</pluginManagement>
|
||
|
<plugins>
|
||
|
<plugin>
|
||
|
<!-- Use the openjpa maven plugin to enhance the domain model classes -->
|
||
|
<groupId>org.codehaus.mojo</groupId>
|
||
|
<artifactId>openjpa-maven-plugin</artifactId>
|
||
|
<version>1.1</version>
|
||
|
<configuration>
|
||
|
<includes>org/apache/openjpa/examples/gallery/model/*.class</includes>
|
||
|
<addDefaultConstructor>true</addDefaultConstructor>
|
||
|
<enforcePropertyRestrictions>true</enforcePropertyRestrictions>
|
||
|
<persistenceXmlFile>src/test/resources/META-INF/persistence.xml</persistenceXmlFile>
|
||
|
</configuration>
|
||
|
<executions>
|
||
|
<execution>
|
||
|
<id>enhancer</id>
|
||
|
<phase>process-classes</phase>
|
||
|
<goals>
|
||
|
<goal>enhance</goal>
|
||
|
</goals>
|
||
|
</execution>
|
||
|
</executions>
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>org.apache.openjpa</groupId>
|
||
|
<artifactId>openjpa-all</artifactId>
|
||
|
<version>${pom.version}</version>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
</plugin>
|
||
|
</plugins>
|
||
|
</build>
|
||
|
</project>
|