188 lines
5.1 KiB
XML
188 lines
5.1 KiB
XML
<?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>
|
|
|
|
|
|
<groupId>org.opencdmp</groupId>
|
|
<artifactId>repositorydepositbase</artifactId>
|
|
<version>${revision}</version>
|
|
<packaging>jar</packaging>
|
|
<!-- <devProfileId>${devProfileId}</devProfileId>-->
|
|
<!-- <devProfileName>${devProfileName}</devProfileName>-->
|
|
<!-- <devProfileUrl>${devProfileUrl}</devProfileUrl>-->
|
|
<!-- <devProfileUrlDeposit>${devProfileUrlDeposit}</devProfileUrlDeposit>-->
|
|
|
|
<name>OpenCDMP Repository Deposit Base</name>
|
|
<description>OpenCDMP Repository Deposit Base</description>
|
|
<url>https://code-repo.d4science.org/MaDgiK-CITE/repository-deposit-base</url>
|
|
<licenses>
|
|
<license>
|
|
<name>MIT License</name>
|
|
<url>https://code-repo.d4science.org/MaDgiK-CITE/repository-deposit-base/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-base</url>
|
|
</scm>
|
|
|
|
<properties>
|
|
<revision>1.0.0-SNAPSHOT</revision>
|
|
<java.version>21</java.version>
|
|
</properties>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
<groupId>org.opencdmp</groupId>
|
|
<artifactId>common-models</artifactId>
|
|
<version>0.0.15</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework</groupId>
|
|
<artifactId>spring-web</artifactId>
|
|
<version>6.1.6</version>
|
|
</dependency>
|
|
</dependencies>
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<configuration>
|
|
<source>21</source>
|
|
<target>21</target>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
<profiles>
|
|
<profile>
|
|
<id>ossrh</id>
|
|
<distributionManagement>
|
|
<snapshotRepository>
|
|
<id>ossrh</id>
|
|
<url>https://s01.oss.sonatype.org/content/repositories/snapshots</url>
|
|
</snapshotRepository>
|
|
<repository>
|
|
<id>ossrh</id>
|
|
<url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2</url>
|
|
</repository>
|
|
</distributionManagement>
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-install-plugin</artifactId>
|
|
<version>2.5.2</version>
|
|
<configuration>
|
|
<createChecksum>true</createChecksum>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-gpg-plugin</artifactId>
|
|
<executions>
|
|
<execution>
|
|
<id>sign-artifacts</id>
|
|
<phase>verify</phase>
|
|
<goals>
|
|
<goal>sign</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
<version>3.2.2</version>
|
|
<executions>
|
|
<execution>
|
|
<id>javadoc-generation</id>
|
|
<phase>package</phase>
|
|
<goals>
|
|
<goal>jar</goal>
|
|
</goals>
|
|
<configuration>
|
|
<classifier>javadoc</classifier>
|
|
<excludes>
|
|
<exclude>gr/**</exclude>
|
|
</excludes>
|
|
<includes>
|
|
<include>README.txt</include>
|
|
</includes>
|
|
<archive>
|
|
<addMavenDescriptor>false</addMavenDescriptor>
|
|
</archive>
|
|
</configuration>
|
|
</execution>
|
|
<execution>
|
|
<id>sources-generation</id>
|
|
<phase>package</phase>
|
|
<goals>
|
|
<goal>jar</goal>
|
|
</goals>
|
|
<configuration>
|
|
<classifier>sources</classifier>
|
|
<excludes>
|
|
<exclude>gr/**</exclude>
|
|
</excludes>
|
|
<includes>
|
|
<include>README.txt</include>
|
|
</includes>
|
|
<archive>
|
|
<addMavenDescriptor>false</addMavenDescriptor>
|
|
</archive>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</profile>
|
|
<profile>
|
|
<id>dev</id>
|
|
<repositories>
|
|
<repository>
|
|
<id>dev</id>
|
|
<name>Dev Profile</name>
|
|
<url>${devProfileUrl}</url>
|
|
</repository>
|
|
</repositories>
|
|
<distributionManagement>
|
|
<repository>
|
|
<id>dev</id>
|
|
<name>Dev Profile</name>
|
|
<url>${devProfileUrlDeposit}</url>
|
|
</repository>
|
|
</distributionManagement>
|
|
</profile>
|
|
<profile>
|
|
<id>cite-dev</id>
|
|
<repositories>
|
|
<repository>
|
|
<id>cite-maven</id>
|
|
<name>CITE Maven Repository</name>
|
|
<url>https://crepo.cite.gr/repository/cite-maven/</url>
|
|
</repository>
|
|
</repositories>
|
|
<activation>
|
|
<activeByDefault>true</activeByDefault>
|
|
</activation>
|
|
</profile>
|
|
</profiles>
|
|
|
|
</project>
|