-
group_2006_bot authoredgroup_2006_bot authored
pom.xml 4.94 KiB
<?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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>info.textgrid.middleware</groupId>
<artifactId>oaipmh</artifactId>
<version>6.2.5-SNAPSHOT</version>
<packaging>pom</packaging>
<name>DARIAHDE :: OAI-PMH DataProvider</name>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<jdk.version>1.8</jdk.version>
<antlr-maven-plugin.version>3.2</antlr-maven-plugin.version>
<antlr-runtime.version>3.2</antlr-runtime.version>
<common.version>5.0.0</common.version>
<cxf.version>3.3.13</cxf.version>
<cyclonedx-maven-plugin.version>2.7.0</cyclonedx-maven-plugin.version>
<elasticsearch.version>7.9.3</elasticsearch.version>
<jaxb2-namespace-prefix.version>1.3</jaxb2-namespace-prefix.version>
<jetty-maven-plugin.version>9.4.12.v20180830</jetty-maven-plugin.version>
<junit.version>4.13.1</junit.version>
<json.version>20190722</json.version>
<maven-antrun-plugin.version>1.3</maven-antrun-plugin.version>
<maven-compiler-plugin.version>3.8.1</maven-compiler-plugin.version>
<maven-deploy-plugin.version>2.8.2</maven-deploy-plugin.version>
<maven-eclipse-plugin.version>2.10</maven-eclipse-plugin.version>
<maven-jaxb2-plugin.version>0.15.2</maven-jaxb2-plugin.version>
<mets-mods-mapping.version>2.4.2</mets-mods-mapping.version>
<package-info-maven-plugin.version>1.4.5</package-info-maven-plugin.version>
<properties-maven-plugin.version>1.0-alpha-2</properties-maven-plugin.version>
<rdf4j-repository-api.version>3.0.2</rdf4j-repository-api.version>
<spring.version>5.3.22</spring.version>
<tgclients.version>4.4.3</tgclients.version>
<xstream.version>1.4.18</xstream.version>
</properties>
<url>https://gitlab.gwdg.de/dariah-de/dariah-de-oai-pmh-services</url>
<scm>
<connection>scm:git@gitlab.gwdg.de:dariah-de/dariah-de-oai-pmh-services.git</connection>
<developerConnection>scm:git@gitlab.gwdg.de:dariah-de/dariah-de-oai-pmh-services.git</developerConnection>
<url>https://gitlab.gwdg.de/dariah-de/dariah-de-oai-pmh-services/-/issues</url>
</scm>
<issueManagement>
<system>GWDG Project Management Service</system>
<url>https://gitlab.gwdg.de/dariah-de/dariah-de-oai-pmh-services/-/issues</url>
</issueManagement>
<licenses>
<license>
<name>GNU LESSER GENERAL PUBLIC LICENSE</name>
<url>http://www.gnu.org/licenses/lgpl-3.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<organization>
<name>SUB Göttingen</name>
<url>https://sub.uni-goettingen.de</url>
</organization>
<profiles>
<profile>
<id>sbom</id>
<build>
<plugins>
<plugin>
<groupId>org.cyclonedx</groupId>
<artifactId>cyclonedx-maven-plugin</artifactId>
<version>${cyclonedx-maven-plugin.version}</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>makeAggregateBom</goal>
</goals>
</execution>
</executions>
<configuration>
<outputFormat>JSON</outputFormat>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<build>
<defaultGoal>package</defaultGoal>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>${maven-compiler-plugin.version}</version>
<configuration>
<source>${jdk.version}</source>
<target>${jdk.version}</target>
<fork>true</fork>
<showDeprecation>true</showDeprecation>
<showWarnings>true</showWarnings>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-eclipse-plugin</artifactId>
<version>${maven-eclipse-plugin.version}</version>
<configuration>
<downloadSources>true</downloadSources>
<downloadJavadocs>true</downloadJavadocs>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>${maven-deploy-plugin.version}</version>
</plugin>
</plugins>
</build>
<modules>
<module>oaipmh-core</module>
<module>oaipmh-webapp</module>
</modules>
<repositories>
<repository>
<id>maven-dariah-public</id>
<name>GWDG Nexus DARIAH-DE Repository</name>
<url>https://nexus.gwdg.de/repository/maven-dariah-public/</url>
</repository>
</repositories>
<distributionManagement>
<snapshotRepository>
<id>maven-dariah-public</id>
<name>GWDG Nexus DARIAH-DE Repository</name>
<url>https://nexus.gwdg.de/repository/maven-dariah-public/</url>
</snapshotRepository>
<repository>
<id>maven-dariah-public</id>
<name>GWDG Nexus DARIAH-DE Repository</name>
<url>https://nexus.gwdg.de/repository/maven-dariah-public/</url>
</repository>
</distributionManagement>
</project>