-
Notifications
You must be signed in to change notification settings - Fork 1
/
pom.xml
179 lines (159 loc) · 6.54 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
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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
<?xml version="1.0" encoding="UTF-8"?>
<!--
~ Copyright (c) 2024 by Stefan Schubert under the MIT License (MIT).
~ See project LICENSE file for the detailed terms and conditions.
-->
<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>
<!-- Taking care to have all spring dependencies right. -->
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>3.2.2</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<groupId>de.bluewhale</groupId>
<artifactId>Marvin</artifactId>
<version>1.1-SNAPSHOT</version>
<packaging>jar</packaging>
<description>
Small behavioral REST Application to be run in a docker container.
Purpose: Investigate cluster managers behavior for training purposes.
</description>
<inceptionYear>2020</inceptionYear>
<developers>
<!-- PLEASE ADD YOURSELF HERE for maven site docu
If you like to have an image link, you need to have a gravatar registered with the used email address here. -->
<developer>
<id>StS</id>
<name>Stefan Schubert</name>
<email>[email protected]</email>
<roles>
<role>Project-Maintainer</role>
<role>Product-Owner</role>
<role>Developer</role>
</roles>
</developer>
</developers>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<java.version>21</java.version>
<log4j2.version>2.20.0</log4j2.version>
<lombok.version>1.18.30</lombok.version>
<owasp.plugin.version>9.0.9</owasp.plugin.version>
<maven.versions.plugin.version>2.16.2</maven.versions.plugin.version>
<classmate.version>1.7.0</classmate.version>
<maven-compiler-plugin.version>3.12.1</maven-compiler-plugin.version>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>com.fasterxml</groupId>
<artifactId>classmate</artifactId>
<version>${classmate.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<!-- Required for Rest -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
</dependency>
<!-- Spring Framework Caching Support (using hazelcast as distributed IMDG -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-cache</artifactId>
</dependency>
<dependency>
<groupId>com.hazelcast</groupId>
<artifactId>hazelcast</artifactId>
</dependency>
<dependency>
<groupId>com.hazelcast</groupId>
<artifactId>hazelcast-spring</artifactId>
</dependency>
<!-- Common Stuff -->
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>${lombok.version}</version>
</dependency>
<!-- Test dependencies -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<finalName>marvin-bot-${project.version}</finalName>
<resources>
<!--
See https://docs.spring.io/spring-boot/docs/current/reference/html/howto-properties-and-configuration.html
about using maven project properties in application.properties.
-->
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
</resource>
</resources>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>${maven-compiler-plugin.version}</version>
<configuration>
<release>${java.version}</release>
<encoding>UTF-8</encoding>
</configuration>
</plugin>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<!-- Build a fully executable jar to use it via /etc/init.d
see https://docs.spring.io/spring-boot/docs/current/reference/html/deployment-install.html
-->
<executable>true</executable>
</configuration>
</plugin>
<!-- Some Security and Patch Management related Plugins -->
<plugin>
<artifactId>dependency-check-maven</artifactId>
<groupId>org.owasp</groupId>
<version>${owasp.plugin.version}</version>
<executions>
<execution>
<phase>verify</phase>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>versions-maven-plugin</artifactId>
<version>${maven.versions.plugin.version}</version>
<executions>
<execution>
<phase>compile</phase>
<goals>
<!-- <goal>display-dependency-updates</goal>-->
<!-- <goal>display-plugin-updates</goal>-->
<goal>display-property-updates</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>