QQQ-6 Adding mvn-settings and first attempt at mvn deploy

This commit is contained in:
Darin Kelkhoff
2022-06-08 14:56:34 -05:00
parent e9e6e23133
commit 26e13126d4
2 changed files with 10 additions and 1 deletions

View File

@ -44,7 +44,7 @@ jobs:
executor: java17 executor: java17
steps: steps:
- run: - run:
echo "i don't know how to github release..." mvn -s .circleci/mvn-settings.xml deploy
workflows: workflows:
main: main:

View File

@ -0,0 +1,9 @@
<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>github-qqq-maven-registry</id>
<username>${env.NF_QQQ_MAVEN_REGISTRY_USERNAME}</username>
<password>${env.NF_QQQ_MAVEN_REGISTRY_PASSWORD}</password>
</server>
</servers>
</settings>