-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpom.xml
More file actions
65 lines (57 loc) · 2.48 KB
/
pom.xml
File metadata and controls
65 lines (57 loc) · 2.48 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
<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>gov.nasa.jpl.ammos.kmc</groupId>
<artifactId>asec-kmc</artifactId>
<version>4.0.0</version>
<packaging>pom</packaging>
<name>AMMOS Data Cryptography Services (DCS)</name>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<!-- WARNING: these properties must still be set and updated manually in kmc-sdls-service/pom.xml as it is parented to the spring boot pom! -->
<!-- Pom files should otherwise have <parent> set to this pom file, and should use these definitions rather than redefining their own -->
<DEFAULT_KMC_ROOT>/opt/ammos/kmc</DEFAULT_KMC_ROOT>
<DEFAULT_PREFIX>${DEFAULT_KMC_ROOT}</DEFAULT_PREFIX>
<DEFAULT_BINPATH>${DEFAULT_PREFIX}/bin</DEFAULT_BINPATH>
<DEFAULT_LIBPATH>${DEFAULT_PREFIX}/lib</DEFAULT_LIBPATH>
<DEFAULT_CFGPATH>${DEFAULT_PREFIX}/etc</DEFAULT_CFGPATH>
<DEFAULT_LOGPATH>${DEFAULT_PREFIX}/logs</DEFAULT_LOGPATH>
<!-- common 3rd-party software versions -->
<slf4j.version>2.0.17</slf4j.version>
<log4j.version>2.25.3</log4j.version>
<gson.version>2.13.1</gson.version>
<bcfips.version>2.0.1</bcfips.version>
<bctls-fips.version>2.0.20</bctls-fips.version>
<junit.version>4.13.2</junit.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<modules>
<module>kmc-key-client</module>
<module>kmc-crypto</module>
<module>kmc-crypto-library</module>
<module>kmc-crypto-service</module>
<module>kmc-sa-mgmt</module>
<module>kmc-sdls-service</module>
<module>kmip-client</module>
</modules>
<dependencyManagement>
<dependencies>
<!-- dependency overrides to address CVEs. review when updating dependency versions -->
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<version>3.27.7</version>
</dependency>
<dependency>
<groupId>org.apache.tomcat.embed</groupId>
<artifactId>tomcat-embed-core</artifactId>
<version>10.1.52</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
<version>6.2.17</version>
</dependency>
</dependencies>
</dependencyManagement>
</project>