Skip to content

Commit 3c37107

Browse files
committed
[mvn] Update maven wrapper
1 parent 4255e08 commit 3c37107

File tree

3 files changed

+14
-3
lines changed

3 files changed

+14
-3
lines changed

.mvn/extensions.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<!--
33
4-
Copyright 2013-2023 the original author or authors.
4+
Copyright 2013-2024 the original author or authors.
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.

.mvn/maven.config

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,2 @@
11
-Daether.checksums.algorithms=SHA-512,SHA-256,SHA-1,MD5
22
-Daether.connector.smartChecksums=false
3-
-Pcdi-2.0

.mvn/settings.xml

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<!--
33
4-
Copyright 2013-2023 the original author or authors.
4+
Copyright 2013-2024 the original author or authors.
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.
@@ -18,12 +18,15 @@
1818
-->
1919
<settings xmlns="http://maven.apache.org/SETTINGS/1.2.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2020
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.2.0 https://maven.apache.org/xsd/settings-1.2.0.xsd">
21+
2122
<servers>
23+
<!-- Used for sonatype snapshots and releases -->
2224
<server>
2325
<id>ossrh</id>
2426
<username>${env.CI_DEPLOY_USERNAME}</username>
2527
<password>${env.CI_DEPLOY_PASSWORD}</password>
2628
</server>
29+
2730
<!-- Used for gh-pages-scm publish via maven-scm-publish-plugin -->
2831
<server>
2932
<id>gh-pages-scm</id>
@@ -32,10 +35,19 @@
3235
<scmVersion>gh-pages</scmVersion>
3336
</configuration>
3437
</server>
38+
39+
<!-- Github deployments (site) -->
3540
<server>
3641
<id>github</id>
3742
<username>${env.CI_DEPLOY_USERNAME}</username>
3843
<password>${env.GITHUB_TOKEN}</password>
3944
</server>
45+
46+
<!-- NVD API Access (dependency-check-plugin) -->
47+
<server>
48+
<id>nvd</id>
49+
<password>${env.NVD_API_KEY}</password>
50+
</server>
4051
</servers>
52+
4153
</settings>

0 commit comments

Comments
 (0)