-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpom.xml
More file actions
106 lines (88 loc) · 3.42 KB
/
Copy pathpom.xml
File metadata and controls
106 lines (88 loc) · 3.42 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
<?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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>eu.europeana.entity</groupId>
<artifactId>entity-api</artifactId>
<version>2.5.1-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Entity API - Version 2</name>
<parent>
<groupId>eu.europeana</groupId>
<artifactId>europeana-parent-pom</artifactId>
<version>3.0</version>
</parent>
<repositories>
<repository>
<id>libs-release-local</id>
<name>europeana-releases</name>
<url>https://artifactory-prod.eanadev.org/artifactory/libs-release</url>
</repository>
<repository>
<id>libs-snapshots-local</id>
<name>europeana-snapshots</name>
<url>https://artifactory-prod.eanadev.org/artifactory/libs-snapshot</url>
</repository>
</repositories>
<modules>
<module>entity-definitions</module>
<module>entity-common</module>
<module>entity-utils</module>
<module>entity-solr</module>
<module>entity-web</module>
</modules>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<java.version>17</java.version>
<maven.compiler.release>${java.version}</maven.compiler.release>
<maven.compiler.plugin.version>3.10.1</maven.compiler.plugin.version>
<!-- SG: NOTE: for newer maven compiler plugin only release version
should be required -->
<maven.compiler.source>${java.version}</maven.compiler.source>
<maven.compiler.target>${java.version}</maven.compiler.target>
<version.junit>5.7.0</version.junit>
<!-- Spring Boot 3 is based on Spring Framework 6.0 and Jakarta EE 9.-->
<version.springBoot>3.3.5</version.springBoot>
<spring-framework.version>6.2.0</spring-framework.version>
<springdoc.version>2.3.0</springdoc.version>
<version.swagger>3.0.0</version.swagger>
<!-- Sonar cloud properties -->
<sonar.organization>europeana</sonar.organization>
<sonar.host.url>https://sonarcloud.io</sonar.host.url>
<!-- Other apis -->
<version.commons.api.sb3>0.1.7-SNAPSHOT</version.commons.api.sb3>
<version.corelib>2.15.4</version.corelib>
<jackson.version>2.18.3</jackson.version>
<jakarta.annotation.version>3.0.0</jakarta.annotation.version>
<version.commonsLang3>3.0</version.commonsLang3>
<version.commonsText>1.9</version.commonsText>
<version.morphia>2.1.4</version.morphia>
<version.apacheSolr>8.11.3</version.apacheSolr>
<version.servletJstl>1.2</version.servletJstl>
<version.log4j2>2.17.2</version.log4j2>
<version.maven-surfire-plugin>3.0.0-M7</version.maven-surfire-plugin>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<!-- Import dependency management from Spring Boot (because we don't use Spring-Boot as parent pom)-->
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-dependencies</artifactId>
<version>${version.springBoot}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>${maven.compiler.plugin.version}</version>
</plugin>
</plugins>
</pluginManagement>
</build>
</project>