2022-12-13 08:22:00 +01:00
|
|
|
<?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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-parent</artifactId>
|
|
|
|
<version>2.5.2</version>
|
|
|
|
<relativePath/>
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
<groupId>gr.cite.opendmp</groupId>
|
|
|
|
<artifactId>repositorydepositzenodo</artifactId>
|
|
|
|
<version>${revision}</version>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
|
|
|
<name>OpenDMP Repository Deposit Zenodo</name>
|
|
|
|
<description>OpenDMP Repository Deposit Zenodo</description>
|
|
|
|
<url>https://code-repo.d4science.org/MaDgiK-CITE/repository-deposit-zenodo</url>
|
|
|
|
<licenses>
|
|
|
|
<license>
|
|
|
|
<name>MIT License</name>
|
|
|
|
<url>https://code-repo.d4science.org/MaDgiK-CITE/repository-deposit-zenodo/src/branch/master/LICENSE.txt</url>
|
|
|
|
<distribution>repo</distribution>
|
|
|
|
</license>
|
|
|
|
</licenses>
|
|
|
|
<developers>
|
|
|
|
<developer>
|
|
|
|
<name>CITE S.A.</name>
|
|
|
|
<email>maven-central@cite.gr</email>
|
|
|
|
<organization>CITE S.A.</organization>
|
|
|
|
<organizationUrl>https://www.cite.gr</organizationUrl>
|
|
|
|
</developer>
|
|
|
|
</developers>
|
|
|
|
<scm>
|
|
|
|
<connection>scm:git:git://code-repo.d4science.org</connection>
|
|
|
|
<developerConnection>scm:git:ssh://code-repo.d4science.org</developerConnection>
|
|
|
|
<url>https://code-repo.d4science.org/MaDgiK-CITE/repository-deposit-zenodo</url>
|
|
|
|
</scm>
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
<revision>1.0.0-SNAPSHOT</revision>
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>gr.cite.opendmp</groupId>
|
|
|
|
<artifactId>repositorydepositbase</artifactId>
|
2023-05-18 14:48:45 +02:00
|
|
|
<version>1.0.3</version>
|
2022-12-13 08:22:00 +01:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.json</groupId>
|
|
|
|
<artifactId>json</artifactId>
|
|
|
|
<version>20160810</version>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>single</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
<configuration>
|
|
|
|
<archive>
|
|
|
|
<manifest>
|
|
|
|
<mainClass>eu.eudat.EuDatApplication</mainClass>
|
|
|
|
</manifest>
|
|
|
|
</archive>
|
|
|
|
<descriptorRefs>
|
|
|
|
<descriptorRef>jar-with-dependencies</descriptorRef>
|
|
|
|
</descriptorRefs>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2022-12-13 16:44:17 +01:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-shade-plugin</artifactId>
|
|
|
|
<version>3.4.1</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>shade</goal>
|
|
|
|
</goals>
|
2022-12-13 08:22:00 +01:00
|
|
|
<configuration>
|
2022-12-13 16:44:17 +01:00
|
|
|
<filters>
|
|
|
|
<filter>
|
|
|
|
<artifact>*:*</artifact>
|
2022-12-13 08:22:00 +01:00
|
|
|
<excludes>
|
2022-12-19 07:27:34 +01:00
|
|
|
<exclude>module-info.class</exclude>
|
2022-12-13 08:22:00 +01:00
|
|
|
</excludes>
|
2022-12-13 16:44:17 +01:00
|
|
|
</filter>
|
|
|
|
</filters>
|
2022-12-19 07:27:34 +01:00
|
|
|
<relocations>
|
|
|
|
<relocation>
|
|
|
|
<pattern>org.json</pattern>
|
|
|
|
<shadedPattern>zenodorepository.shaded.org.json</shadedPattern>
|
|
|
|
</relocation>
|
|
|
|
</relocations>
|
2022-12-13 16:44:17 +01:00
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2022-12-13 08:22:00 +01:00
|
|
|
</project>
|