Skip to content

Commit

Permalink
Add mvn settings
Browse files Browse the repository at this point in the history
These should allow deployment credentials to be obtained from the local environment variables
  • Loading branch information
matthijsgeers-riscure committed Mar 7, 2024
1 parent 590a754 commit 76040e1
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .mvn/local-settings.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<?xml version="1.0" encoding="UTF-8"?>
<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">
<proxies>
</proxies>
<servers>
<server>
<id>ossrh</id>
<username>${env.OSSRH_USERNAME}</username>
<password>${env.OSSRH_PASSWORD}</password>
</server>
</servers>
</settings>

0 comments on commit 76040e1

Please sign in to comment.