-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpom.xml
78 lines (66 loc) · 3.09 KB
/
pom.xml
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
<?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>
<parent>
<artifactId>europeana-parent-pom</artifactId>
<groupId>eu.europeana</groupId>
<version>2.5</version>
</parent>
<artifactId>oai-pmh</artifactId>
<version>0.9.3-SNAPSHOT</version>
<packaging>pom</packaging>
<name>OAI-PMH</name>
<description>Europeana OAI-PMH server and primitive test client</description>
<modules>
<module>common</module>
<module>server</module>
<module>client</module>
</modules>
<properties>
<java.version>17</java.version>
<maven.compiler.source>${java.version}</maven.compiler.source>
<maven.compiler.target>${java.version}</maven.compiler.target>
<spring-boot.version>2.7.18</spring-boot.version>
<spring-instrument.version>5.3.34</spring-instrument.version>
<corelib.version>2.16.7</corelib.version>
<metis-schema.version>9</metis-schema.version>
<snappy.version>1.1.10.3</snappy.version>
<solrj.version>8.11.3</solrj.version>
<log4j2.version>2.23.1</log4j2.version>
<jackson.version>2.17.1</jackson.version>
<json-path.version>2.9.0</json-path.version>
<commons-lang3.version>3.14.0</commons-lang3.version>
<!--<aspectj.version>1.8.13</aspectj.version>-->
<!--<aspectj-maven-plugin.version>1.7</aspectj-maven-plugin.version>-->
<mockito.version>3.3.3</mockito.version>
</properties>
<build>
<plugins>
<!-- This will be active when running the verify or install goal
To skip (e.g. during debugging) use 'mvn clean package')-->
<plugin>
<groupId>org.owasp</groupId>
<artifactId>dependency-check-maven</artifactId>
<version>9.2.0</version>
<configuration>
<nvdApiKeyEnvironmentVariable>NVD_APIKEY</nvdApiKeyEnvironmentVariable>
<!-- see EA-3505 why we host the known exploited vulnerabilties file ourselves -->
<knownExploitedUrl>https://artifactory.eanadev.org/artifactory/ext-release-local/gov/cisa/www/known_exploited_vulnerabilities.json</knownExploitedUrl>
<assemblyAnalyzerEnabled>false</assemblyAnalyzerEnabled>
<skipSystemScope>true</skipSystemScope>
<failBuildOnCVSS>8</failBuildOnCVSS>
<suppressionFiles>
<suppressionFile>owasp-suppress.xml</suppressionFile>
</suppressionFiles>
</configuration>
<executions>
<execution>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>