2023-01-03 18:11:19 +01: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">
|
2022-12-22 17:16:03 +01:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
|
|
<groupId>org.gcube.tools</groupId>
|
|
|
|
<artifactId>maven-parent</artifactId>
|
|
|
|
<version>1.1.0</version>
|
|
|
|
</parent>
|
|
|
|
<groupId>org.gcube.common</groupId>
|
2023-01-31 14:52:02 +01:00
|
|
|
<artifactId>software-versions-processor-lib</artifactId>
|
2023-08-30 17:46:31 +02:00
|
|
|
<version>1.1.0-SNAPSHOT</version>
|
2023-01-31 14:52:02 +01:00
|
|
|
<name>gCube Software Versions Processor Lib</name>
|
|
|
|
<description>
|
2023-01-31 15:15:40 +01:00
|
|
|
gCube Software Versions Processor Lib is a library which helps to process software versions to made actions such as:
|
2023-01-31 14:52:02 +01:00
|
|
|
|
|
|
|
* publish the software (e.g. deposit on Zenodo to obtain a DOI);
|
|
|
|
* export the citations (e.g. in BibLaTex format)
|
|
|
|
</description>
|
2022-12-22 17:16:03 +01:00
|
|
|
<properties>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
</properties>
|
|
|
|
<scm>
|
2023-03-06 10:30:43 +01:00
|
|
|
<connection>scm:git:https://code-repo.d4science.org/gCubeSystem/${project.artifactId}.git</connection>
|
|
|
|
<developerConnection>scm:git:https://code-repo.d4science.org/gCubeSystem/${project.artifactId}.git</developerConnection>
|
|
|
|
<url>https://code-repo.d4science.org/gCubeSystem/${project.artifactId}</url>
|
2022-12-22 17:16:03 +01:00
|
|
|
</scm>
|
|
|
|
<dependencyManagement>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.distribution</groupId>
|
|
|
|
<artifactId>gcube-bom</artifactId>
|
2023-08-30 17:46:31 +02:00
|
|
|
<version>2.4.0-SNAPSHOT</version>
|
2022-12-22 17:16:03 +01:00
|
|
|
<type>pom</type>
|
|
|
|
<scope>import</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</dependencyManagement>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.common</groupId>
|
|
|
|
<artifactId>gcube-jackson-core</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.common</groupId>
|
|
|
|
<artifactId>gcube-jackson-annotations</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.common</groupId>
|
|
|
|
<artifactId>gcube-jackson-databind</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.gcube.common</groupId>
|
|
|
|
<artifactId>gxHTTP</artifactId>
|
|
|
|
</dependency>
|
2023-01-04 17:28:20 +01:00
|
|
|
|
|
|
|
|
2023-01-03 18:11:19 +01:00
|
|
|
<dependency>
|
2023-01-04 17:28:20 +01:00
|
|
|
<groupId>org.glassfish.jersey.core</groupId>
|
|
|
|
<artifactId>jersey-client</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.glassfish.jersey.media</groupId>
|
|
|
|
<artifactId>jersey-media-json-jackson</artifactId>
|
2023-01-03 18:11:19 +01:00
|
|
|
</dependency>
|
2023-01-04 14:25:56 +01:00
|
|
|
<dependency>
|
2023-01-04 17:28:20 +01:00
|
|
|
<groupId>org.glassfish.jersey.media</groupId>
|
|
|
|
<artifactId>jersey-media-multipart</artifactId>
|
2023-01-04 14:25:56 +01:00
|
|
|
</dependency>
|
|
|
|
|
2023-01-02 17:54:58 +01:00
|
|
|
<!-- Test libraries -->
|
|
|
|
<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>
|
2023-01-03 18:11:19 +01:00
|
|
|
|
2022-12-22 17:16:03 +01:00
|
|
|
</dependencies>
|
2023-08-30 17:40:18 +02:00
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<!-- Sphinx plugin' -->
|
|
|
|
<plugin>
|
|
|
|
<groupId>kr.motd.maven</groupId>
|
|
|
|
<artifactId>sphinx-maven-plugin</artifactId>
|
|
|
|
<version>2.10.0</version>
|
|
|
|
<configuration>
|
|
|
|
<outputDirectory>${project.build.directory}/${project.artifactId}-${project.version}/docs</outputDirectory>
|
|
|
|
<builder>html</builder>
|
|
|
|
<configDirectory>${basedir}/docs</configDirectory>
|
|
|
|
<sourceDirectory>${basedir}/docs</sourceDirectory>
|
|
|
|
</configuration>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>process-resources</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>generate</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
2022-12-22 17:16:03 +01:00
|
|
|
</project>
|