Skip to content
This repository has been archived by the owner on Feb 2, 2024. It is now read-only.

Commit

Permalink
Add CI deploy settings
Browse files Browse the repository at this point in the history
  • Loading branch information
vitalijr2 committed May 5, 2023
1 parent 36106e8 commit fbadd2b
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions ci_settings.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
<settings xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/SETTINGS/1.0.0"
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd">
<servers>
<server>
<configuration>
<httpHeaders>
<property>
<name>Job-Token</name>
<value>${env.CI_JOB_TOKEN}</value>
</property>
</httpHeaders>
</configuration>
<id>gitlab-maven</id>
</server>
<server>
<id>ossrh</id>
<password>${NEXUS_PASSWORD}</password>
<username>${NEXUS_USERNAME}</username>
</server>
</servers>
</settings>

0 comments on commit fbadd2b

Please sign in to comment.