129 lines
4.3 KiB
XML
129 lines
4.3 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!--
|
|
Copyright (c) 2010, 2014, Oracle and/or its affiliates. All rights reserved.
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation; version 2 of the License.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program; if not, write to the Free Software
|
|
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
-->
|
|
|
|
<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">
|
|
<properties>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
<project.source-dir>@CMAKE_CURRENT_SOURCE_DIR@</project.source-dir>
|
|
</properties>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<groupId>com.mysql.clusterj</groupId>
|
|
<artifactId>clusterj-aggregate</artifactId>
|
|
<packaging>pom</packaging>
|
|
<version>@JAVA_NDB_VERSION@@JAVA_MVN_SUFFIX@</version>
|
|
<name>ClusterJ Aggregate</name>
|
|
<description>The aggregate maven project of ClusterJ</description>
|
|
<modules>
|
|
<module>clusterj-api</module>
|
|
<module>clusterj-core</module>
|
|
<module>clusterj-test</module>
|
|
<module>clusterj-tie</module>
|
|
<module>clusterj-jdbc</module>
|
|
<module>clusterj-jpatest</module>
|
|
<module>clusterj-openjpa</module>
|
|
<module>clusterj-unit</module>
|
|
</modules>
|
|
<build>
|
|
<pluginManagement>
|
|
<plugins>
|
|
<plugin>
|
|
<artifactId>maven-enforcer-plugin</artifactId>
|
|
<version>1.0</version>
|
|
</plugin>
|
|
<plugin>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<version>2.3.2</version>
|
|
</plugin>
|
|
<plugin>
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
<version>2.7.2</version>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.antlr</groupId>
|
|
<artifactId>antlr3-maven-plugin</artifactId>
|
|
<version>3.2</version>
|
|
</plugin>
|
|
</plugins>
|
|
</pluginManagement>
|
|
</build>
|
|
|
|
<dependencyManagement>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.antlr</groupId>
|
|
<artifactId>antlr</artifactId>
|
|
<version>3.2</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.openjpa</groupId>
|
|
<artifactId>openjpa</artifactId>
|
|
<version>2.2.2</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>mysql</groupId>
|
|
<artifactId>mysql-connector-java</artifactId>
|
|
<version>5.1.17</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.mysql.clusterj</groupId>
|
|
<artifactId>clusterj-api</artifactId>
|
|
<version>@JAVA_NDB_VERSION@@JAVA_MVN_SUFFIX@</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.mysql.clusterj</groupId>
|
|
<artifactId>clusterj-core</artifactId>
|
|
<version>@JAVA_NDB_VERSION@@JAVA_MVN_SUFFIX@</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.mysql.clusterj</groupId>
|
|
<artifactId>clusterj-test</artifactId>
|
|
<version>@JAVA_NDB_VERSION@@JAVA_MVN_SUFFIX@</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.mysql.clusterj</groupId>
|
|
<artifactId>clusterj-tie</artifactId>
|
|
<version>@JAVA_NDB_VERSION@@JAVA_MVN_SUFFIX@</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.mysql.clusterj</groupId>
|
|
<artifactId>clusterj-jpatest</artifactId>
|
|
<version>@JAVA_NDB_VERSION@@JAVA_MVN_SUFFIX@</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>ndbjtie</groupId>
|
|
<artifactId>ndbjtie</artifactId>
|
|
<version>@JAVA_NDB_VERSION@@JAVA_MVN_SUFFIX@</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.mysql.clusterj</groupId>
|
|
<artifactId>clusterj-unit</artifactId>
|
|
<version>@JAVA_NDB_VERSION@@JAVA_MVN_SUFFIX@</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
</dependencyManagement>
|
|
<licenses>
|
|
<license>
|
|
<name>GPLv2</name>
|
|
<url>http://www.gnu.org/licenses/gpl-2.0.txt</url>
|
|
</license>
|
|
</licenses>
|
|
</project>
|