2018-03-21 11:16:32 +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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<artifactId>web</artifactId>
|
2024-10-14 09:41:21 +02:00
|
|
|
<version>1.0.0-SNAPSHOT</version>
|
|
|
|
<packaging>jar</packaging>
|
2018-03-21 11:16:32 +01:00
|
|
|
|
|
|
|
<parent>
|
2024-04-26 12:50:56 +02:00
|
|
|
<groupId>org.opencdmp</groupId>
|
|
|
|
<artifactId>opencdmp-backend</artifactId>
|
2024-10-14 09:41:21 +02:00
|
|
|
<version>1.0.0-SNAPSHOT</version>
|
2024-04-05 16:52:20 +02:00
|
|
|
<relativePath>../pom.xml</relativePath>
|
2018-03-21 11:16:32 +01:00
|
|
|
</parent>
|
|
|
|
|
2024-04-05 16:52:20 +02:00
|
|
|
<properties>
|
2024-04-26 12:50:56 +02:00
|
|
|
<start-class>org.opencdmp.OpenCDMPApplication</start-class>
|
2024-04-05 16:55:19 +02:00
|
|
|
<maven.compiler.release>21</maven.compiler.release>
|
|
|
|
<maven.compiler.source>21</maven.compiler.source>
|
|
|
|
<maven.compiler.target>21</maven.compiler.target>
|
2024-04-05 16:52:20 +02:00
|
|
|
</properties>
|
|
|
|
|
2018-03-21 11:16:32 +01:00
|
|
|
<dependencies>
|
2024-04-08 08:35:31 +02:00
|
|
|
<dependency>
|
2024-04-26 12:50:56 +02:00
|
|
|
<groupId>org.opencdmp</groupId>
|
2023-10-03 16:29:45 +02:00
|
|
|
<artifactId>core</artifactId>
|
2024-10-14 09:41:21 +02:00
|
|
|
<version>1.0.0-SNAPSHOT</version>
|
2024-04-08 08:35:31 +02:00
|
|
|
</dependency>
|
2018-07-11 15:47:36 +02:00
|
|
|
|
2018-05-14 08:44:35 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
|
|
</dependency>
|
2023-10-06 17:07:58 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-webflux</artifactId>
|
|
|
|
</dependency>
|
2018-05-14 08:44:35 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
<artifactId>jackson-annotations</artifactId>
|
|
|
|
</dependency>
|
2023-10-11 16:53:12 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.fasterxml.jackson.datatype</groupId>
|
|
|
|
<artifactId>jackson-datatype-jsr310</artifactId>
|
|
|
|
</dependency>
|
2024-02-13 17:16:59 +01:00
|
|
|
<dependency>
|
|
|
|
<groupId>io.swagger</groupId>
|
|
|
|
<artifactId>swagger-annotations</artifactId>
|
2024-09-04 15:34:05 +02:00
|
|
|
<version>1.6.14</version>
|
2024-02-13 17:16:59 +01:00
|
|
|
</dependency>
|
2018-05-14 08:44:35 +02:00
|
|
|
<dependency>
|
2021-06-29 13:33:57 +02:00
|
|
|
<groupId>org.junit.jupiter</groupId>
|
|
|
|
<artifactId>junit-jupiter-api</artifactId>
|
2024-09-04 15:34:05 +02:00
|
|
|
<version>5.10.3</version>
|
2018-05-14 08:44:35 +02:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2021-06-25 11:32:58 +02:00
|
|
|
<groupId>org.postgresql</groupId>
|
2018-05-14 08:44:35 +02:00
|
|
|
<artifactId>postgresql</artifactId>
|
2023-11-08 12:37:16 +01:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.hibernate.orm</groupId>
|
|
|
|
<artifactId>hibernate-core</artifactId>
|
2018-05-14 08:44:35 +02:00
|
|
|
</dependency>
|
2023-10-13 08:50:22 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springdoc</groupId>
|
|
|
|
<artifactId>springdoc-openapi-starter-webmvc-ui</artifactId>
|
2024-09-04 15:34:05 +02:00
|
|
|
<version>2.3.0</version>
|
2023-10-13 08:50:22 +02:00
|
|
|
</dependency>
|
2018-05-14 08:44:35 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-tomcat</artifactId>
|
|
|
|
</dependency>
|
2023-10-23 10:15:08 +02:00
|
|
|
<!--CITE DEPENDENCIES-->
|
|
|
|
<dependency>
|
|
|
|
<groupId>gr.cite</groupId>
|
|
|
|
<artifactId>cors-web</artifactId>
|
2024-10-14 09:41:21 +02:00
|
|
|
<version>2.1.1</version>
|
2023-10-23 10:15:08 +02:00
|
|
|
</dependency>
|
2023-10-27 17:56:19 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>gr.cite</groupId>
|
|
|
|
<artifactId>exceptions-web</artifactId>
|
2024-10-14 09:41:21 +02:00
|
|
|
<version>2.2.1</version>
|
2024-02-01 17:15:06 +01:00
|
|
|
</dependency>
|
2018-03-21 11:16:32 +01:00
|
|
|
</dependencies>
|
2018-05-14 08:44:35 +02:00
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
2021-06-25 11:32:58 +02:00
|
|
|
<version>3.8.1</version>
|
2018-05-14 08:44:35 +02:00
|
|
|
<configuration>
|
2023-11-14 11:24:14 +01:00
|
|
|
<source>21</source>
|
|
|
|
<target>21</target>
|
2018-05-14 08:44:35 +02:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
2022-11-22 08:40:05 +01:00
|
|
|
</plugin>
|
2018-05-14 08:44:35 +02:00
|
|
|
</plugins>
|
|
|
|
</build>
|
2018-03-21 11:16:32 +01:00
|
|
|
</project>
|