blob: 12fe5d26da26a6a06088e930bcf8e867d636a029 [file] [log] [blame]
<?xml version="1.0" encoding="UTF-8"?>
<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>
<groupId>org.apache.aries.jpa.example</groupId>
<artifactId>org.apache.aries.jpa.example.parent</artifactId>
<name>Apache Aries JPA example parent</name>
<packaging>pom</packaging>
<parent>
<groupId>org.apache.aries.jpa</groupId>
<artifactId>org.apache.aries.jpa.parent</artifactId>
<version>2.2.0-SNAPSHOT</version>
<relativePath>../jpa-parent</relativePath>
</parent>
<properties>
<aries.skip.version.check>true</aries.skip.version.check>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>ianal-maven-plugin</artifactId>
<version>1.0-alpha-1</version>
<executions>
<execution>
<goals>
<goal>verify-legal-files</goal>
</goals>
<configuration>
<strict>false</strict> <!-- Workaround for build failure even when legal files are there -->
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<modules>
<module>tasklist-blueprint</module>
<module>tasklist-ds</module>
<module>tasklist-model</module>
</modules>
</project>