75 lines
2.0 KiB
XML
75 lines
2.0 KiB
XML
<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.gcube.data.analysis.tabulardata</groupId>
|
|
<artifactId>cube-manager-parent</artifactId>
|
|
<version>3.5.0-SNAPSHOT</version>
|
|
</parent>
|
|
<artifactId>cube-manager-metadata</artifactId>
|
|
<name>Cube Manager Metadata</name>
|
|
<description>Cube Manager module that manages the table and column metadata and their persistence on a backend.</description>
|
|
|
|
<scm>
|
|
<url>https://svn.d4science.research-infrastructures.eu/gcube/trunk/data-analysis/tabulardata/cube-manager-parent/cube-manager-metadata/</url>
|
|
</scm>
|
|
|
|
<repositories>
|
|
<repository>
|
|
<id>eclipselink</id>
|
|
<url>http://maven.research-infrastructures.eu:8081/nexus/content/repositories/eclipselink/</url>
|
|
</repository>
|
|
</repositories>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.gcube.common</groupId>
|
|
<artifactId>database-resource</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<artifactId>eclipselink</artifactId>
|
|
<groupId>org.eclipse.persistence</groupId>
|
|
<version>2.4.0</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>postgresql</groupId>
|
|
<artifactId>postgresql</artifactId>
|
|
<version>9.1-901.jdbc4</version>
|
|
</dependency>
|
|
|
|
<!-- test deps -->
|
|
|
|
<dependency>
|
|
<groupId>com.h2database</groupId>
|
|
<artifactId>h2</artifactId>
|
|
<version>1.3.166</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.gcube.data.analysis.tabulardata</groupId>
|
|
<artifactId>tabular-model-util</artifactId>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
<executions>
|
|
<execution>
|
|
<id>servicearchive</id>
|
|
<phase>package</phase>
|
|
<goals>
|
|
<goal>single</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project> |