2019-10-03 14:53:59 +02:00
|
|
|
<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.tools</groupId>
|
|
|
|
<artifactId>maven-parent</artifactId>
|
|
|
|
<version>1.1.0</version>
|
|
|
|
</parent>
|
|
|
|
<groupId>org.gcube.information-system</groupId>
|
|
|
|
<artifactId>parthenos-entities</artifactId>
|
|
|
|
<version>1.0.0-SNAPSHOT</version>
|
2019-12-05 17:32:36 +01:00
|
|
|
<name>PARTHENOS Entities</name>
|
|
|
|
<description>
|
|
|
|
This Library map the PARTHENOS Entities Ontology to a resource model compliant with Joint Resource Registry.
|
|
|
|
The defined model is built on top of IS Model and gCube Model.
|
|
|
|
</description>
|
2019-10-03 14:53:59 +02:00
|
|
|
|
|
|
|
<properties>
|
2017-01-30 17:27:59 +01:00
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
<distroDirectory>${project.basedir}/distro</distroDirectory>
|
|
|
|
<serviceClass>InformationSystem</serviceClass>
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
<scm>
|
2019-10-03 14:53:59 +02:00
|
|
|
<connection>scm:git:https://code-repo.d4science.org/luca.frosini/${project.artifactId}.git</connection>
|
|
|
|
<developerConnection>scm:git:https://code-repo.d4science.org/luca.frosini/${project.artifactId}.git</developerConnection>
|
|
|
|
<url>https://code-repo.d4science.org/luca.frosini/${project.artifactId}</url>
|
2017-01-30 17:27:59 +01:00
|
|
|
</scm>
|
2019-10-03 14:53:59 +02:00
|
|
|
|
|
|
|
<dependencyManagement>
|
2017-01-30 17:27:59 +01:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.distribution</groupId>
|
|
|
|
<artifactId>gcube-bom</artifactId>
|
2020-07-07 17:15:44 +02:00
|
|
|
<version>2.0.0-SNAPSHOT</version>
|
2017-01-30 17:27:59 +01:00
|
|
|
<type>pom</type>
|
|
|
|
<scope>import</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.information-system</groupId>
|
|
|
|
<artifactId>information-system-bom</artifactId>
|
2020-07-07 17:15:44 +02:00
|
|
|
<version>2.0.0-SNAPSHOT</version>
|
2017-01-30 17:27:59 +01:00
|
|
|
<type>pom</type>
|
|
|
|
<scope>import</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</dependencyManagement>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
2018-09-28 17:47:25 +02:00
|
|
|
<groupId>org.gcube.resource-management</groupId>
|
|
|
|
<artifactId>gcube-model</artifactId>
|
2017-01-30 17:27:59 +01:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- Test Dependency -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
<version>4.11</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>ch.qos.logback</groupId>
|
|
|
|
<artifactId>logback-classic</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
2019-12-05 17:32:36 +01:00
|
|
|
<id>make-servicearchive</id>
|
|
|
|
<phase>package</phase>
|
2017-01-30 17:27:59 +01:00
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2019-10-03 14:53:59 +02:00
|
|
|
|
2017-01-30 17:23:00 +01:00
|
|
|
</project>
|