argos/dmp-backend/pom.xml

299 lines
10 KiB
XML
Raw Normal View History

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2018-01-05 16:40:19 +01:00
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>
2018-03-21 11:16:32 +01:00
<groupId>eu.eudat</groupId>
2018-01-05 16:40:19 +01:00
<artifactId>dmp-backend</artifactId>
2024-04-08 09:09:19 +02:00
<name>OpenDMP Backend Parent</name>
2024-02-22 10:52:47 +01:00
<version>${revision}</version>
2018-05-14 08:44:35 +02:00
<packaging>pom</packaging>
2018-02-09 16:54:41 +01:00
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
2024-04-01 10:33:46 +02:00
<version>3.2.4</version>
2018-02-09 16:54:41 +01:00
</parent>
2018-03-21 11:16:32 +01:00
<modules>
<module>core</module>
2024-04-08 11:58:55 +02:00
<module>web</module>
2018-03-21 11:16:32 +01:00
</modules>
2018-02-09 16:54:41 +01:00
<properties>
<project.http.version>1.19.0</project.http.version>
<project.oauth.version>1.19.0</project.oauth.version>
2018-02-16 08:45:18 +01:00
<project.version>0.2.0</project.version>
2023-11-14 11:24:14 +01:00
<java.version>21</java.version>
2018-02-09 16:54:41 +01:00
2018-01-05 16:40:19 +01:00
<commons-codec.version>1.9</commons-codec.version>
<org.junit.version>4.11</org.junit.version>
<log4j.version>1.2.17</log4j.version>
2021-12-14 11:09:15 +01:00
<log4j2.version>2.15.0</log4j2.version>
2024-02-22 10:52:47 +01:00
<revision>1.0.0-SNAPSHOT</revision>
2023-11-14 11:24:14 +01:00
<maven.compiler.release>21</maven.compiler.release>
<maven.compiler.source>21</maven.compiler.source>
<maven.compiler.target>21</maven.compiler.target>
2018-01-05 16:40:19 +01:00
</properties>
<dependencies>
<dependency>
<groupId>org.json</groupId>
<artifactId>json</artifactId>
2024-03-29 13:32:47 +01:00
<version>20240303</version>
2018-01-05 16:40:19 +01:00
</dependency>
2018-05-14 08:44:35 +02:00
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context-support</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-jpa</artifactId>
</dependency>
2018-07-11 15:47:36 +02:00
<!-- https://mvnrepository.com/artifact/org.elasticsearch/elasticsearch -->
<dependency>
<groupId>org.elasticsearch</groupId>
<artifactId>elasticsearch</artifactId>
2024-03-19 11:11:01 +01:00
<version>8.5.2</version>
<exclusions>
<exclusion>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
</exclusion>
<exclusion>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpcore</artifactId>
</exclusion>
<exclusion>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpcore-nio</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents.client5</groupId>
<artifactId>httpclient5</artifactId>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpcore-nio</artifactId>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpcore</artifactId>
<version>4.4.13</version>
2018-07-11 15:47:36 +02:00
</dependency>
<dependency>
<groupId>org.elasticsearch.client</groupId>
<artifactId>elasticsearch-rest-high-level-client</artifactId>
2024-03-29 13:32:47 +01:00
<version>7.17.19</version>
2018-07-11 15:47:36 +02:00
</dependency>
2024-04-01 10:33:46 +02:00
<dependency>
<groupId>org.elasticsearch.client</groupId>
<artifactId>transport</artifactId>
<version>7.6.0</version>
</dependency>
2018-01-05 16:40:19 +01:00
<dependency>
<groupId>org.hibernate.orm</groupId>
2018-06-27 12:29:21 +02:00
<artifactId>hibernate-core</artifactId>
2023-11-08 12:37:16 +01:00
<version>6.3.1.Final</version>
2018-01-05 16:40:19 +01:00
</dependency>
<dependency>
<groupId>org.hibernate.orm</groupId>
2018-01-05 16:40:19 +01:00
<artifactId>hibernate-c3p0</artifactId>
</dependency>
<!-- https://mvnrepository.com/artifact/com.jayway.jsonpath/json-path -->
<dependency>
<groupId>com.jayway.jsonpath</groupId>
<artifactId>json-path</artifactId>
2024-03-29 13:32:47 +01:00
<version>2.9.0</version>
2018-01-05 16:40:19 +01:00
</dependency>
<!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.dataformat/jackson-dataformat-xml -->
<dependency>
<groupId>com.fasterxml.jackson.dataformat</groupId>
<artifactId>jackson-dataformat-xml</artifactId>
</dependency>
2018-05-14 08:44:35 +02:00
2018-01-05 16:40:19 +01:00
2018-06-05 10:18:01 +02:00
<!-- https://mvnrepository.com/artifact/com.fasterxml.jackeu.eudat.corecore/jackeu.eudat.corecore -->
2018-03-28 15:24:47 +02:00
<dependency>
2018-06-27 12:29:21 +02:00
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
2018-03-28 15:24:47 +02:00
</dependency>
2018-06-05 10:18:01 +02:00
<!-- https://mvnrepository.com/artifact/com.fasterxml.jackeu.eudat.corecore/jackson-databind -->
2018-03-28 15:24:47 +02:00
<dependency>
2018-06-27 12:29:21 +02:00
<groupId>com.fasterxml.jackson.core</groupId>
2018-03-28 15:24:47 +02:00
<artifactId>jackson-databind</artifactId>
</dependency>
2023-10-11 16:53:12 +02:00
<dependency>
<groupId>com.fasterxml.jackson.datatype</groupId>
<artifactId>jackson-datatype-jsr310</artifactId>
2024-04-01 10:33:46 +02:00
<version>2.17.0</version>
2018-03-28 15:24:47 +02:00
</dependency>
2018-01-05 16:40:19 +01:00
<!-- g/a spring -->
2018-06-05 10:18:01 +02:00
<!-- https://mvnrepository.com/artifact/com.fasterxml.jackeu.eudat.corecore/jackson-databind -->
2018-01-05 16:40:19 +01:00
2018-01-10 17:05:23 +01:00
2018-01-11 12:13:01 +01:00
2018-01-05 16:40:19 +01:00
<!-- Various libs -->
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
2024-04-01 10:33:46 +02:00
<version>3.14.0</version>
2018-01-05 16:40:19 +01:00
</dependency>
2018-03-01 10:14:10 +01:00
<!-- https://mvnrepository.com/artifact/org.apache.poi/poi -->
2018-03-05 17:18:45 +01:00
<!-- https://mvnrepository.com/artifact/org.apache.xmlgraphics/fop -->
2024-04-01 10:33:46 +02:00
2018-01-05 16:40:19 +01:00
2021-12-14 11:09:15 +01:00
<!--<dependency>
2018-03-08 11:54:56 +01:00
<groupId>org.hibernate</groupId>
<artifactId>hibernate-jpamodelgen</artifactId>
2021-12-14 11:09:15 +01:00
</dependency>-->
2018-03-08 11:54:56 +01:00
2021-12-14 11:09:15 +01:00
<!--<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-to-slf4j</artifactId>
<version>2.8.2</version>
2021-12-14 11:09:15 +01:00
</dependency>-->
<!-- &lt;!&ndash; The client &ndash;&gt;-->
<!-- <dependency>-->
<!-- <groupId>io.prometheus</groupId>-->
<!-- <artifactId>simpleclient</artifactId>-->
<!-- <version>0.11.0</version>-->
<!-- </dependency>-->
<!-- &lt;!&ndash; Hotspot JVM metrics&ndash;&gt;-->
<!-- <dependency>-->
<!-- <groupId>io.prometheus</groupId>-->
<!-- <artifactId>simpleclient_hotspot</artifactId>-->
<!-- <version>0.11.0</version>-->
<!-- </dependency>-->
<!-- &lt;!&ndash; Exposition HTTPServer&ndash;&gt;-->
<!-- <dependency>-->
<!-- <groupId>io.prometheus</groupId>-->
<!-- <artifactId>simpleclient_httpserver</artifactId>-->
<!-- <version>0.11.0</version>-->
<!-- </dependency>-->
<!-- &lt;!&ndash; Pushgateway exposition&ndash;&gt;-->
<!-- <dependency>-->
<!-- <groupId>io.prometheus</groupId>-->
<!-- <artifactId>simpleclient_pushgateway</artifactId>-->
<!-- <version>0.11.0</version>-->
<!-- </dependency>-->
<!-- https://mvnrepository.com/artifact/io.micrometer/micrometer-registry-prometheus -->
2021-04-09 18:05:04 +02:00
<dependency>
<groupId>io.micrometer</groupId>
<artifactId>micrometer-registry-prometheus</artifactId>
<version>1.11.2</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
<!-- Micormeter core dependecy -->
<dependency>
<groupId>io.micrometer</groupId>
<artifactId>micrometer-core</artifactId>
</dependency>
<!--CITE DEPENDENCIES-->
2023-10-11 16:53:12 +02:00
<dependency>
<groupId>gr.cite</groupId>
<artifactId>data-tools</artifactId>
2023-12-05 10:32:17 +01:00
<version>2.1.2</version>
</dependency>
<dependency>
<groupId>gr.cite</groupId>
<artifactId>exceptions</artifactId>
2024-04-01 10:33:46 +02:00
<version>2.2.0</version>
</dependency>
<dependency>
<groupId>gr.cite</groupId>
<artifactId>logging</artifactId>
2024-04-01 10:33:46 +02:00
<version>2.2.0</version>
</dependency>
2023-10-18 08:58:05 +02:00
<dependency>
<groupId>gr.cite</groupId>
<artifactId>cache</artifactId>
2024-03-28 12:16:38 +01:00
<version>2.2.0</version>
2023-10-18 08:58:05 +02:00
</dependency>
2018-01-05 16:40:19 +01:00
2023-11-14 11:24:14 +01:00
<dependency>
<groupId>gr.cite</groupId>
<artifactId>elastic</artifactId>
<version>2.1.2</version>
</dependency>
2023-11-29 16:01:03 +01:00
<dependency>
<groupId>gr.cite</groupId>
<artifactId>keycloak-api</artifactId>
2024-04-16 13:21:37 +02:00
<version>2.3.0</version>
2023-11-29 16:01:03 +01:00
</dependency>
2023-12-12 09:14:26 +01:00
<dependency>
<groupId>gr.cite</groupId>
<artifactId>rabbitmq-core</artifactId>
2024-03-29 13:32:47 +01:00
<version>2.1.2</version>
2023-12-12 09:14:26 +01:00
</dependency>
</dependencies>
2018-02-09 16:54:41 +01:00
<profiles>
<profile>
<id>devel</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<properties>
<packaging.type>jar</packaging.type>
</properties>
</profile>
<!-- <profile>-->
<!-- <id>intellij-properties-launcher</id>-->
2023-01-17 09:31:34 +01:00
<!-- <dependencies>-->
<!-- <dependency>-->
<!-- <groupId>org.springframework.boot</groupId>-->
<!-- <artifactId>spring-boot-loader</artifactId>-->
<!-- </dependency>-->
<!-- </dependencies>-->
2023-01-17 09:31:34 +01:00
<!-- </profile>-->
2018-02-09 16:54:41 +01:00
<profile>
<id>production</id>
<properties>
2018-07-11 15:47:36 +02:00
<packaging.type>jar</packaging.type>
2018-02-09 16:54:41 +01:00
</properties>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-tomcat</artifactId>
<scope>provided</scope>
</dependency>
</dependencies>
2018-03-01 10:14:10 +01:00
<activation>
<property>
<name>profile</name>
<value>production</value>
</property>
</activation>
2018-02-09 16:54:41 +01:00
</profile>
</profiles>
2018-05-14 08:44:35 +02:00
</project>