-
Notifications
You must be signed in to change notification settings - Fork 8
/
pom.xml
37 lines (33 loc) · 1.46 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
<?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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>3.3.3</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<groupId>defence.in.depth</groupId>
<artifactId>root</artifactId>
<version>1.0.0-SNAPSHOT</version>
<name>defence-in-depth</name>
<description>Secure Rest API according to Defence In Depth</description>
<packaging>pom</packaging>
<properties>
<java.version>21</java.version>
<commons-lang3.version>3.12.0</commons-lang3.version>
<spring-cloud-aws.version>2.4.4</spring-cloud-aws.version>
</properties>
<modules>
<module>1-request-validation</module>
<module>2-token-validation</module>
<module>3-token-transformation</module>
<module>4-input-data-validation</module>
<module>5-operation-validation</module>
<module>6-data-access-validation</module>
<module>7-secure-by-design</module>
<module>8-secrets</module>
<module>9-complete-with-all-defence-layers</module>
</modules>
</project>