437 lines
16 KiB
XML
437 lines
16 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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
|
|
<parent>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-parent</artifactId>
|
|
<version>2.7.18</version>
|
|
<relativePath></relativePath>
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<groupId>eu.dnetlib</groupId>
|
|
<artifactId>uoa-repository-manager-service</artifactId>
|
|
<version>1.1.0-SNAPSHOT</version>
|
|
<packaging>jar</packaging>
|
|
|
|
<properties>
|
|
<maven.compiler.source>11</maven.compiler.source>
|
|
<maven.compiler.target>11</maven.compiler.target>
|
|
</properties>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-logging</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
<!-- <dependency>-->
|
|
<!-- <groupId>org.springframework.boot</groupId>-->
|
|
<!-- <artifactId>spring-boot-starter-security</artifactId>-->
|
|
<!-- </dependency>-->
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-log4j2</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-data-jdbc</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-data-jpa</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-actuator-autoconfigure</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-data-redis</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-validation</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-configuration-processor</artifactId>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
<!-- <dependency>-->
|
|
<!-- <groupId>org.springframework.boot</groupId>-->
|
|
<!-- <artifactId>spring-boot-devtools</artifactId>-->
|
|
<!-- <optional>true</optional>-->
|
|
<!-- </dependency>-->
|
|
|
|
<dependency>
|
|
<groupId>org.springdoc</groupId>
|
|
<artifactId>springdoc-openapi-ui</artifactId>
|
|
<version>1.8.0</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.h2database</groupId>
|
|
<artifactId>h2</artifactId>
|
|
<version>2.2.224</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>eu.dnetlib.dhp</groupId>
|
|
<artifactId>dnet-exporter-model</artifactId>
|
|
<version>[3.5.1, )</version>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>org.springdoc</groupId>
|
|
<artifactId>springdoc-openapi-common</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
|
|
<!-- https://mvnrepository.com/artifact/io.micrometer/micrometer-registry-prometheus -->
|
|
<dependency>
|
|
<groupId>io.micrometer</groupId>
|
|
<artifactId>micrometer-registry-prometheus</artifactId>
|
|
<version>1.12.4</version>
|
|
</dependency>
|
|
|
|
<!-- for Validator Service -->
|
|
<!-- JAX-WS API -->
|
|
<dependency>
|
|
<groupId>javax.xml.ws</groupId>
|
|
<artifactId>jaxws-api</artifactId>
|
|
<version>2.3.1</version> <!-- or the latest version -->
|
|
</dependency>
|
|
|
|
<!-- JAX-WS Runtime Implementation (e.g., Metro) -->
|
|
<dependency>
|
|
<groupId>com.sun.xml.ws</groupId>
|
|
<artifactId>jaxws-rt</artifactId>
|
|
<version>2.3.7</version> <!-- or the latest version -->
|
|
</dependency>
|
|
<!-- for Validator Service -->
|
|
|
|
<!-- Needed to remove dependency to dnet-runtime -->
|
|
<dependency>
|
|
<groupId>org.apache.cxf</groupId>
|
|
<artifactId>cxf-core</artifactId>
|
|
<version>3.1.5</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.cxf</groupId>
|
|
<artifactId>cxf-rt-bindings-soap</artifactId>
|
|
<version>3.1.5</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.cxf</groupId>
|
|
<artifactId>cxf-rt-transports-http</artifactId>
|
|
<version>3.1.5</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.cxf</groupId>
|
|
<artifactId>cxf-rt-frontend-jaxws</artifactId>
|
|
<version>3.1.5</version>
|
|
</dependency>
|
|
<!-- Needed to remove dependency to dnet-runtime -->
|
|
|
|
|
|
<dependency>
|
|
<groupId>eu.dnetlib</groupId>
|
|
<artifactId>uoa-hcm</artifactId>
|
|
<version>[2.0.0-SNAPSHOT, 3.0.0)</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>eu.dnetlib</groupId>
|
|
<artifactId>dnet-openaire-usage-stats-sushilite</artifactId>
|
|
<version>1.0.0-SNAPSHOT</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>eu.dnetlib</groupId>
|
|
<artifactId>dnet-openaire-usage-stats-sushilite-r5</artifactId>
|
|
<version>1.1.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>eu.dnetlib.dhp</groupId>
|
|
<artifactId>dnet-openaire-broker-common</artifactId>
|
|
<version>3.1.1-SNAPSHOT</version>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>javax.validation</groupId>
|
|
<artifactId>validation-api</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>javax.servlet</groupId>
|
|
<artifactId>javax.servlet-api</artifactId>
|
|
<version>4.0.1</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<!-- <dependency>-->
|
|
<!-- <groupId>cglib</groupId>-->
|
|
<!-- <artifactId>cglib-nodep</artifactId>-->
|
|
<!-- <version>3.3.0</version>-->
|
|
<!-- </dependency>-->
|
|
|
|
<dependency>
|
|
<groupId>se.kb</groupId>
|
|
<artifactId>oai4j</artifactId>
|
|
<version>[0.6b1,)</version>
|
|
</dependency>
|
|
|
|
<!-- <!– TODO - Do we need this? –>-->
|
|
<!-- <dependency>-->
|
|
<!-- <groupId>xalan</groupId>-->
|
|
<!-- <artifactId>xalan</artifactId>-->
|
|
<!-- <version>2.7.3</version>-->
|
|
<!-- </dependency>-->
|
|
|
|
<dependency>
|
|
<groupId>org.json</groupId>
|
|
<artifactId>json</artifactId>
|
|
<version>20240303</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.sun.mail</groupId>
|
|
<artifactId>javax.mail</artifactId>
|
|
<version>1.6.2</version>
|
|
</dependency>
|
|
|
|
<!-- https://mvnrepository.com/artifact/org.postgresql/postgresql -->
|
|
<dependency>
|
|
<groupId>org.postgresql</groupId>
|
|
<artifactId>postgresql</artifactId>
|
|
<version>42.7.3</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.mitre</groupId>
|
|
<artifactId>openid-connect-client</artifactId>
|
|
<version>1.3.4</version>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>org.slf4j</groupId>
|
|
<artifactId>jcl-over-slf4j</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.session</groupId>
|
|
<artifactId>spring-session-data-redis</artifactId>
|
|
<version>2.7.4</version>
|
|
</dependency>
|
|
|
|
<!-- https://mvnrepository.com/artifact/redis.clients/jedis -->
|
|
<dependency>
|
|
<groupId>redis.clients</groupId>
|
|
<artifactId>jedis</artifactId>
|
|
<version>${jedis.version}</version> <!-- This property comes from the parent-pom. -->
|
|
<!--<version>3.7.0</version>-->
|
|
</dependency>
|
|
<!-- https://mvnrepository.com/artifact/org.apache.commons/commons-pool2 -->
|
|
<dependency>
|
|
<groupId>org.apache.commons</groupId>
|
|
<artifactId>commons-pool2</artifactId>
|
|
<version>2.12.0</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.google.code.gson</groupId>
|
|
<artifactId>gson</artifactId>
|
|
<version>2.10.1</version>
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
<groupId>javax.xml.bind</groupId>
|
|
<artifactId>jaxb-api</artifactId>
|
|
<version>2.3.1</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.sun.xml.bind</groupId>
|
|
<artifactId>jaxb-impl</artifactId>
|
|
<version>2.3.9</version>
|
|
</dependency>
|
|
<!-- https://mvnrepository.com/artifact/com.sun.xml.bind/jaxb-core -->
|
|
<dependency>
|
|
<groupId>com.sun.xml.bind</groupId>
|
|
<artifactId>jaxb-core</artifactId>
|
|
<version>2.3.0.1</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>javax.activation</groupId>
|
|
<artifactId>activation</artifactId>
|
|
<version>1.1.1</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.eurocris</groupId>
|
|
<artifactId>openaire-cris-validator</artifactId>
|
|
<version>2.0.2-SNAPSHOT</version>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
|
<dependencyManagement>
|
|
<dependencies>
|
|
<!-- <dependency>-->
|
|
<!-- <groupId>org.springframework.session</groupId>-->
|
|
<!-- <artifactId>spring-session-bom</artifactId>-->
|
|
<!-- <version>2021.2.3</version>-->
|
|
<!-- <type>pom</type>-->
|
|
<!-- <scope>import</scope>-->
|
|
<!-- </dependency>-->
|
|
</dependencies>
|
|
</dependencyManagement>
|
|
|
|
<build>
|
|
<outputDirectory>${project.build.directory}/${project.build.finalName}/WEB-INF/classes</outputDirectory>
|
|
<plugins>
|
|
<!--
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<version>3.11.0</version>
|
|
<configuration>
|
|
<source>1.8</source>
|
|
<target>1.8</target>
|
|
<encoding>UTF-8</encoding>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-war-plugin</artifactId>
|
|
<version>3.4.0</version>
|
|
<configuration>
|
|
<failOnMissingWebXml>false</failOnMissingWebXml>
|
|
</configuration>
|
|
</plugin>
|
|
-->
|
|
|
|
<plugin>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
</plugin>
|
|
|
|
<plugin>
|
|
<groupId>cz.habarta.typescript-generator</groupId>
|
|
<artifactId>typescript-generator-maven-plugin</artifactId>
|
|
<version>2.37.1128</version>
|
|
<executions>
|
|
<execution>
|
|
<id>java to typeScript</id>
|
|
<goals>
|
|
<goal>generate</goal>
|
|
</goals>
|
|
<configuration>
|
|
<jsonLibrary>jackson2</jsonLibrary>
|
|
<outputFileType>implementationFile</outputFileType>
|
|
<mapClasses>asClasses</mapClasses>
|
|
<classPatterns>
|
|
<pattern>eu.dnetlib.domain.functionality.validator.*</pattern>
|
|
</classPatterns>
|
|
<outputFile>target/operation.ts</outputFile>
|
|
<outputKind>module</outputKind>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
<finalName>uoa-repository-manager-service</finalName>
|
|
<resources>
|
|
<resource>
|
|
<directory>src/main/resources</directory>
|
|
<filtering>true</filtering>
|
|
</resource>
|
|
</resources>
|
|
</build>
|
|
|
|
<repositories>
|
|
<repository>
|
|
<id>central</id>
|
|
<name>Maven Central</name>
|
|
<url>https://repo.maven.apache.org/maven2</url>
|
|
<layout>default</layout>
|
|
<snapshots>
|
|
<enabled>false</enabled>
|
|
</snapshots>
|
|
</repository>
|
|
<repository>
|
|
<id>dnet45-bootstrap-snapshot</id>
|
|
<name>D-Net 45 Bootstrap Snapshot</name>
|
|
<url>https://maven.research-infrastructures.eu/nexus/content/repositories/dnet45-bootstrap-snapshot</url>
|
|
<releases>
|
|
<enabled>false</enabled>
|
|
</releases>
|
|
<snapshots>
|
|
<enabled>true</enabled>
|
|
</snapshots>
|
|
<layout>default</layout>
|
|
</repository>
|
|
<repository>
|
|
<id>dnet45-bootstrap-release</id>
|
|
<name>D-Net 45 Bootstrap Release</name>
|
|
<url>https://maven.research-infrastructures.eu/nexus/content/repositories/dnet45-bootstrap-release</url>
|
|
<releases>
|
|
<enabled>true</enabled>
|
|
</releases>
|
|
<snapshots>
|
|
<enabled>false</enabled>
|
|
</snapshots>
|
|
<layout>default</layout>
|
|
</repository>
|
|
<repository>
|
|
<id>dnet-deps</id>
|
|
<name>dnet-dependencies</name>
|
|
<url>https://maven.d4science.org/nexus/content/repositories/dnet-deps</url>
|
|
<layout>default</layout>
|
|
</repository>
|
|
<repository>
|
|
<id>dnet45-releases</id>
|
|
<name>D-Net 45 releases</name>
|
|
<url>https://maven.d4science.org/nexus/content/repositories/dnet45-releases</url>
|
|
<layout>default</layout>
|
|
<snapshots>
|
|
<enabled>false</enabled>
|
|
</snapshots>
|
|
<releases>
|
|
<enabled>true</enabled>
|
|
</releases>
|
|
</repository>
|
|
<repository>
|
|
<id>dnet45-snapshots</id>
|
|
<name>D-Net 45 snapshots</name>
|
|
<url>https://maven.d4science.org/nexus/content/repositories/dnet45-snapshots</url>
|
|
<layout>default</layout>
|
|
<snapshots>
|
|
<enabled>true</enabled>
|
|
</snapshots>
|
|
<releases>
|
|
<enabled>false</enabled>
|
|
</releases>
|
|
</repository>
|
|
|
|
<!-- Use this when testing local JARs. -->
|
|
<!--<repository>
|
|
<id>libs</id>
|
|
<url>file:///${project.basedir}/libs</url>
|
|
</repository>-->
|
|
</repositories>
|
|
|
|
</project>
|