Skip to content

Commit 89560a9

Browse files
authored
Upgrade Helidon 4.2.0 (#9)
* Suppress prometheus-metrics false positive * Upgrade helidon to 4.2.0. Upgrade owasp-dependency-check plugin
1 parent 3eb13bd commit 89560a9

File tree

2 files changed

+23
-4
lines changed

2 files changed

+23
-4
lines changed

etc/dependency-check-suppression.xml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,24 @@
22
<suppressions xmlns="https://jeremylong.github.io/DependencyCheck/dependency-suppression.1.3.xsd">
33
<!-- For information see https://jeremylong.github.io/DependencyCheck/general/suppression.html -->
44

5+
6+
<!-- False Positive.
7+
This is against an old version of prometheus (not prometheus metrics nor micrometer)
8+
-->
9+
<suppress>
10+
<notes><![CDATA[
11+
file name: micrometer-registry-prometheus-simpleclient-1.13.4.jar
12+
]]></notes>
13+
<packageUrl regex="true">^pkg:maven/io\.micrometer/micrometer-registry-prometheus-simpleclient@.*$</packageUrl>
14+
<cve>CVE-2019-3826</cve>
15+
</suppress>
16+
<suppress>
17+
<notes><![CDATA[
18+
file name: prometheus-metrics-core-1.2.1.jar
19+
]]></notes>
20+
<packageUrl regex="true">^pkg:maven/io\.prometheus/prometheus-metrics-(.*)@.*$</packageUrl>
21+
<cve>CVE-2019-3826</cve>
22+
</suppress>
23+
524
</suppressions>
625

pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<!--
33
4-
Copyright (c) 2024 Oracle and/or its affiliates.
4+
Copyright (c) 2024, 2025 Oracle and/or its affiliates.
55
66
Licensed under the Apache License, Version 2.0 (the "License");
77
you may not use this file except in compliance with the License.
@@ -24,7 +24,7 @@
2424
<parent>
2525
<groupId>io.helidon.applications</groupId>
2626
<artifactId>helidon-mp</artifactId>
27-
<version>4.0.6</version>
27+
<version>4.2.0</version>
2828
<relativePath/>
2929
</parent>
3030
<groupId>io.helidon.samples</groupId>
@@ -47,10 +47,10 @@
4747
<version.lib.mockito>5.11.0</version.lib.mockito>
4848

4949
<version.plugin.checkstyle>3.3.1</version.plugin.checkstyle>
50-
<version.plugin.dependency-check>9.0.8</version.plugin.dependency-check>
50+
<version.plugin.dependency-check>12.1.0</version.plugin.dependency-check>
5151
<version.plugin.directory>1.0</version.plugin.directory>
5252
<version.plugin.failsafe>3.2.5</version.plugin.failsafe>
53-
<version.plugin.helidon-build-tools>4.0.6</version.plugin.helidon-build-tools>
53+
<version.plugin.helidon-build-tools>4.0.16</version.plugin.helidon-build-tools>
5454
<version.plugin.jandex-maven-plugin>3.1.7</version.plugin.jandex-maven-plugin>
5555
<version.plugin.openapi-generator>6.2.1</version.plugin.openapi-generator>
5656
<version.plugin.spotbugs>4.8.5.0</version.plugin.spotbugs>

0 commit comments

Comments
 (0)