-
Notifications
You must be signed in to change notification settings - Fork 225
Expand file tree
/
Copy pathpom.xml
More file actions
248 lines (238 loc) · 10.6 KB
/
Copy pathpom.xml
File metadata and controls
248 lines (238 loc) · 10.6 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
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
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
<?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.5.16</version>
</parent>
<groupId>io.openaev</groupId>
<artifactId>openaev-platform</artifactId>
<version>3.260917.1</version>
<packaging>pom</packaging>
<name>OpenAEV platform</name>
<description>OpenAEV platform</description>
<properties>
<java.version>21</java.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<minio.version>8.6.0</minio.version>
<minio.okhttp3.version>4.12.0</minio.okhttp3.version>
<gson.version>2.14.0</gson.version>
<validation-api.version>2.0.1.Final</validation-api.version>
<commons-io.version>2.22.0</commons-io.version>
<commons-validator.version>1.11.0</commons-validator.version>
<maven-compiler-plugin.version>3.16.0</maven-compiler-plugin.version>
<jacoco-plugin.version>0.8.15</jacoco-plugin.version>
<jjwt.version>0.13.0</jjwt.version>
<postgresql.version>42.7.13</postgresql.version>
<pyroscope.version>2.9.1</pyroscope.version>
<bouncycastle.version>1.85.2</bouncycastle.version>
<jackson-bom.version>2.22.2</jackson-bom.version>
<netty.version>4.2.17.Final</netty.version>
<commons-lang3.version>3.20.0</commons-lang3.version>
<tools-jackson-core.version>3.2.2</tools-jackson-core.version>
<tomcat.version>10.1.59</tomcat.version>
<!-- Override Spring Boot BOM: httpcore5-h2 HTTP/2 HPACK DoS CVE-2026-54428 -->
<httpcore5.version>5.4.3</httpcore5.version>
<velocity-engine-core.version>2.4.1</velocity-engine-core.version>
<opensaml.version>5.2.3</opensaml.version>
<logback.version>1.6.3</logback.version>
<log4j2.version>2.26.1</log4j2.version>
<httpclient5.version>5.6.4</httpclient5.version>
<kotlin.version>2.1.21</kotlin.version>
<hikaricp.version>7.1.0</hikaricp.version>
<opentelemetry.version>1.65.0</opentelemetry.version>
<amqp-client.version>5.35.0</amqp-client.version>
<rabbit-amqp-client.version>${amqp-client.version}</rabbit-amqp-client.version>
<micrometer.version>1.17.1</micrometer.version>
<micrometer-tracing.version>1.7.1</micrometer-tracing.version>
</properties>
<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://s01.oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>ossrh</id>
<url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
<repositories>
<!-- Maven Central declared first so most artifacts resolve without hitting other repos (see Repository Order: https://maven.apache.org/guides/mini/guide-multiple-repositories.html#repository-order) -->
<repository>
<id>central</id>
<name>Maven Central</name>
<url>https://repo.maven.apache.org/maven2</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
<!-- The org.opensaml and net.shibboleth artifacts are only published here, not on Central -->
<repository>
<id>shibboleth-releases</id>
<name>Shibboleth Releases</name>
<url>https://build.shibboleth.net/maven/releases/</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
<!-- Fallback for OpenSAML artifacts if Shibboleth repo is unreachable -->
<repository>
<id>jboss-public</id>
<name>JBoss Public Repository</name>
<url>https://repository.jboss.org/nexus/content/groups/public/</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
</repositories>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>io.jsonwebtoken</groupId>
<artifactId>jjwt-api</artifactId>
<version>${jjwt.version}</version>
</dependency>
<dependency>
<groupId>io.jsonwebtoken</groupId>
<artifactId>jjwt-impl</artifactId>
<version>${jjwt.version}</version>
</dependency>
<dependency>
<groupId>io.jsonwebtoken</groupId>
<artifactId>jjwt-jackson</artifactId>
<version>${jjwt.version}</version>
</dependency>
<dependency>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
<version>${postgresql.version}</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>${commons-lang3.version}</version> <!-- Force version for lack of update in commons-collections4 -->
</dependency>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-bom</artifactId>
<version>${netty.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bc-jdk18on-bom</artifactId>
<version>${bouncycastle.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>tools.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
<version>${tools-jackson-core.version}</version>
</dependency>
<!-- jackson-databind 3.x lags core and resolves transitively to 3.0.0; pin to the
core train (3.2.1) to fix CVE-2026-54512/54513 (Critical) and CVE-2026-59889 -->
<dependency>
<groupId>tools.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>${tools-jackson-core.version}</version>
</dependency>
<!-- Not managed by the Spring Boot BOM; a deep transitive still pulls 1.0.5.
Pin explicitly so CVE-2026-9563 (JSON parser DoS) stays fixed regardless of path. -->
<dependency>
<groupId>org.eclipse.parsson</groupId>
<artifactId>parsson</artifactId>
<version>1.1.9</version>
</dependency>
<!-- opensaml-saml-impl pulls velocity-engine-core 2.3.x, which shades commons-io 2.8.0 and triggers
CVE-2024-47554 in dependency scanning (not exploitable here: XmlStreamReader absent). Velocity 2.4.x removes the shaded commons-io. -->
<dependency>
<groupId>org.apache.velocity</groupId>
<artifactId>velocity-engine-core</artifactId>
<version>${velocity-engine-core.version}</version>
</dependency>
<dependency>
<groupId>org.opensaml</groupId>
<artifactId>opensaml-saml-api</artifactId>
<version>${opensaml.version}</version>
</dependency>
<dependency>
<groupId>org.opensaml</groupId>
<artifactId>opensaml-saml-impl</artifactId>
<version>${opensaml.version}</version>
</dependency>
<dependency>
<groupId>io.opentelemetry</groupId>
<artifactId>opentelemetry-bom</artifactId>
<version>${opentelemetry.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<scope>provided</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>${maven-compiler-plugin.version}</version>
<configuration>
<source>21</source>
<target>21</target>
<annotationProcessorPaths>
<path>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>${lombok.version}</version>
</path>
</annotationProcessorPaths>
</configuration>
</plugin>
<plugin>
<groupId>com.diffplug.spotless</groupId>
<artifactId>spotless-maven-plugin</artifactId>
<version>3.10.1</version>
<configuration>
<java>
<includes>
<include>src/main/java/**/*.java</include>
<include>src/test/java/**/*.java</include>
</includes>
<importOrder/>
<removeUnusedImports/>
<googleJavaFormat>
<version>1.24.0</version>
<style>GOOGLE</style>
</googleJavaFormat>
</java>
</configuration>
</plugin>
</plugins>
</build>
<modules>
<module>openaev-annotation-processor</module>
<module>openaev-model</module>
<module>openaev-framework</module>
<module>openaev-api</module>
<module>openaev-maven-plugin</module>
</modules>
</project>