2024-07-03 14:41:31 +02:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2025-04-01 12:00:37 +02: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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
2024-07-03 14:41:31 +02:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
<parent>
|
2025-03-18 10:09:01 +01:00
|
|
|
<groupId>eu.dnetlib</groupId>
|
|
|
|
|
<artifactId>uoa-spring-boot-parent</artifactId>
|
|
|
|
|
<version>2.1.0</version>
|
2024-07-03 14:41:31 +02:00
|
|
|
</parent>
|
2025-03-18 10:09:01 +01:00
|
|
|
<groupId>eu.dnetlib</groupId>
|
2025-04-01 10:10:49 +02:00
|
|
|
<artifactId>portal-search</artifactId>
|
2026-04-22 10:24:48 +02:00
|
|
|
<version>1.1.8-SNAPSHOT</version>
|
2024-07-03 14:41:31 +02:00
|
|
|
<packaging>war</packaging>
|
2025-04-01 10:10:49 +02:00
|
|
|
<name>portal-search</name>
|
2025-03-18 10:09:01 +01:00
|
|
|
<description>Search service for portals</description>
|
2025-04-01 11:53:27 +02:00
|
|
|
<scm>
|
|
|
|
|
<developerConnection>scm:git:gitea@code-repo.d4science.org:MaDgIK/portal-search.git</developerConnection>
|
2025-12-19 09:30:20 +01:00
|
|
|
<tag>HEAD</tag>
|
2025-04-01 11:53:27 +02:00
|
|
|
</scm>
|
2024-07-03 14:41:31 +02:00
|
|
|
<properties>
|
2024-10-04 10:34:43 +02:00
|
|
|
<java.version>17</java.version>
|
2024-07-03 14:41:31 +02:00
|
|
|
</properties>
|
2024-09-10 13:24:17 +02:00
|
|
|
|
|
|
|
|
<repositories>
|
|
|
|
|
<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>
|
|
|
|
|
<repository>
|
|
|
|
|
<id>dnet45-bootstrap-snapshot</id>
|
|
|
|
|
<name>D-Net 45 Bootstrap Snapshot</name>
|
|
|
|
|
<url>https://maven.d4science.org/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.d4science.org/nexus/content/repositories/dnet45-bootstrap-release/</url>
|
|
|
|
|
<releases>
|
|
|
|
|
<enabled>true</enabled>
|
|
|
|
|
</releases>
|
|
|
|
|
<snapshots>
|
|
|
|
|
<enabled>false</enabled>
|
|
|
|
|
</snapshots>
|
|
|
|
|
<layout>default</layout>
|
|
|
|
|
</repository>
|
|
|
|
|
</repositories>
|
|
|
|
|
|
2024-07-03 14:41:31 +02:00
|
|
|
<dependencies>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-tomcat</artifactId>
|
|
|
|
|
<scope>provided</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
2024-09-17 13:19:35 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-webflux</artifactId>
|
|
|
|
|
</dependency>
|
2024-07-03 14:41:31 +02:00
|
|
|
<!-- https://mvnrepository.com/artifact/org.apache.solr/solr-solrj -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.solr</groupId>
|
|
|
|
|
<artifactId>solr-solrj</artifactId>
|
2026-04-22 09:58:29 +02:00
|
|
|
<version>8.11.2</version>
|
2024-07-03 14:41:31 +02:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-validation</artifactId>
|
|
|
|
|
</dependency>
|
2025-10-30 14:53:06 +01:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.fasterxml.jackson.dataformat</groupId>
|
|
|
|
|
<artifactId>jackson-dataformat-xml</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
2024-07-03 14:41:31 +02:00
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
|
<artifactId>lombok</artifactId>
|
|
|
|
|
<version>1.18.34</version>
|
|
|
|
|
<scope>provided</scope>
|
|
|
|
|
</dependency>
|
2024-10-09 13:26:01 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
|
<artifactId>lombok-mapstruct-binding</artifactId>
|
|
|
|
|
<version>0.2.0</version>
|
|
|
|
|
</dependency>
|
2024-07-09 14:47:10 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.mapstruct</groupId>
|
|
|
|
|
<artifactId>mapstruct</artifactId>
|
|
|
|
|
<version>1.5.5.Final</version>
|
|
|
|
|
</dependency>
|
2024-07-12 13:11:51 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.mapstruct</groupId>
|
|
|
|
|
<artifactId>mapstruct-processor</artifactId>
|
|
|
|
|
<version>1.5.5.Final</version>
|
|
|
|
|
<scope>provided</scope>
|
|
|
|
|
</dependency>
|
2024-07-09 14:47:10 +02:00
|
|
|
|
2024-09-05 14:04:08 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>eu.dnetlib.dhp</groupId>
|
|
|
|
|
<artifactId>dhp-schemas</artifactId>
|
2025-02-14 08:52:57 +01:00
|
|
|
<version>[10.1.3]</version>
|
2024-09-05 14:04:08 +02:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>eu.dnetlib.dhp</groupId>
|
|
|
|
|
<artifactId>dhp-dump-schema</artifactId>
|
2025-04-01 11:45:57 +02:00
|
|
|
<version>[10.0.0]</version>
|
2024-09-05 14:04:08 +02:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
|
<artifactId>jackson-core</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
|
<artifactId>jackson-databind</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
|
<artifactId>jackson-annotations</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.fasterxml.jackson.dataformat</groupId>
|
|
|
|
|
<artifactId>jackson-dataformat-csv</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
2025-04-01 11:14:37 +02:00
|
|
|
<!-- micrometer -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>io.micrometer</groupId>
|
|
|
|
|
<artifactId>micrometer-registry-prometheus</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
2025-04-01 10:50:20 +02:00
|
|
|
<!-- redis cache
|
2025-04-01 10:10:49 +02:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-data-redis</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter-cache</artifactId>
|
2025-04-01 10:50:20 +02:00
|
|
|
</dependency> -->
|
2024-07-03 14:41:31 +02:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
|
|
<build>
|
|
|
|
|
<plugins>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-war-plugin</artifactId>
|
2024-10-09 13:26:01 +02:00
|
|
|
<version>3.3.1</version>
|
2024-07-03 14:41:31 +02:00
|
|
|
<configuration>
|
|
|
|
|
<failOnMissingWebXml>false</failOnMissingWebXml>
|
|
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
2025-04-16 11:09:47 +02:00
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
|
|
<version>${spring-boot-version}</version> <!-- your version -->
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<goals>
|
|
|
|
|
<goal>repackage</goal>
|
2026-07-03 14:12:14 +02:00
|
|
|
<goal>build-info</goal>
|
2025-04-16 11:09:47 +02:00
|
|
|
</goals>
|
2026-07-03 14:12:14 +02:00
|
|
|
<configuration>
|
|
|
|
|
<additionalProperties>
|
|
|
|
|
<scm.tag>${project.scm.tag}</scm.tag>
|
|
|
|
|
</additionalProperties>
|
|
|
|
|
</configuration>
|
2025-04-16 11:09:47 +02:00
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
</plugin>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
|
<version>3.8.1</version>
|
|
|
|
|
<configuration>
|
|
|
|
|
<source>11</source>
|
|
|
|
|
<target>11</target>
|
|
|
|
|
<annotationProcessorPaths>
|
|
|
|
|
<path>
|
|
|
|
|
<groupId>org.mapstruct</groupId>
|
|
|
|
|
<artifactId>mapstruct-processor</artifactId>
|
|
|
|
|
<version>1.5.5.Final</version>
|
|
|
|
|
</path>
|
|
|
|
|
<path>
|
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
|
<artifactId>lombok</artifactId>
|
|
|
|
|
<version>1.18.34</version>
|
|
|
|
|
</path>
|
|
|
|
|
<path>
|
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
|
<artifactId>lombok-mapstruct-binding</artifactId>
|
|
|
|
|
<version>0.2.0</version>
|
|
|
|
|
</path>
|
|
|
|
|
</annotationProcessorPaths>
|
|
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
2024-07-12 13:11:51 +02:00
|
|
|
</plugins>
|
2024-07-03 14:41:31 +02:00
|
|
|
</build>
|
|
|
|
|
|
|
|
|
|
</project>
|