Skip to content

Commit

Permalink
feat: add maven-settings.xml to fix CI error (#13)
Browse files Browse the repository at this point in the history
  • Loading branch information
liewstar authored Oct 3, 2024
1 parent 6ab7b39 commit ebcbe54
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions maven-settings.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
<settings>
<servers>
<server>
<id>ossrh</id>
<username>${OSSRH_JIRA_USERNAME}</username>
<password>${OSSRH_JIRA_PASSWORD}</password>
</server>
</servers>
<profiles>
<profile>
<id>ossrh</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<properties>
<gpg.executable>gpg</gpg.executable>
<gpg.keyname>${GPG_KEY_NAME}</gpg.keyname>
<gpg.passphrase>${GPG_PASSPHRASE}</gpg.passphrase>
</properties>
</profile>
</profiles>
</settings>

0 comments on commit ebcbe54

Please sign in to comment.