Resolve "Prepare pom.xml to be able to release to Maven Central"

This commit is contained in:
Philip Helger 2025-08-13 17:58:21 +02:00
parent 864c36b3c2
commit ef6ea7a92c
5 changed files with 74 additions and 48 deletions

View file

@ -0,0 +1,11 @@
<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd">
<servers>
<server>
<id>central</id>
<username>${MVN_CENTRAL_USER}</username>
<password>${MVN_CENTRAL_TOKEN}</password>
</server>
</servers>
</settings>