aboutsummaryrefslogtreecommitdiff
path: root/.cisettings.xml
diff options
context:
space:
mode:
authorThomas Lenz <thomas.lenz@egiz.gv.at>2020-12-09 09:57:29 +0100
committerThomas Lenz <thomas.lenz@egiz.gv.at>2020-12-09 09:57:29 +0100
commit51ae28ef61c61992b2a6da4bda4f7d5e35b01ec5 (patch)
treef5744aefba521772d691c3ca6fc3890cddb9de21 /.cisettings.xml
parent62e394aa59bbe7a891c6081eb5bf8cb5c11ef7fa (diff)
downloadmoa-id-spss-51ae28ef61c61992b2a6da4bda4f7d5e35b01ec5.tar.gz
moa-id-spss-51ae28ef61c61992b2a6da4bda4f7d5e35b01ec5.tar.bz2
moa-id-spss-51ae28ef61c61992b2a6da4bda4f7d5e35b01ec5.zip
add gitlab CI/CD configuration
Diffstat (limited to '.cisettings.xml')
-rw-r--r--.cisettings.xml37
1 files changed, 37 insertions, 0 deletions
diff --git a/.cisettings.xml b/.cisettings.xml
new file mode 100644
index 000000000..8556c6a85
--- /dev/null
+++ b/.cisettings.xml
@@ -0,0 +1,37 @@
+<settings xmlns="http://maven.apache.org/SETTINGS/1.1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.1.0 http://maven.apache.org/xsd/settings-1.1.0.xsd">
+ <servers>
+ <server>
+ <id>gitlab</id>
+ <configuration>
+ <httpHeaders>
+ <property>
+ <name>Job-Token</name>
+ <value>${env.CI_JOB_TOKEN}</value>
+ </property>
+ </httpHeaders>
+ </configuration>
+ </server>
+ <server>
+ <id>gitlab-localbuild</id>
+ <configuration>
+ <httpHeaders>
+ <property>
+ <name>Private-Token</name>
+ <value>${env.PRIVATE_TOKEN}</value>
+ </property>
+ </httpHeaders>
+ </configuration>
+ </server>
+ <server>
+ <id>egizMaven</id>
+ <username>${env.EGIZ_MAVEN_USER}</username>
+ <password>${env.EGIZ_MAVEN_PASSWORD}</password>
+ <configuration>
+ <knownHostsProvider implementation="org.apache.maven.wagon.providers.ssh.knownhost.NullKnownHostProvider">
+ <hostKeyChecking>no</hostKeyChecking>
+ </knownHostsProvider>
+ </configuration>
+ </server>
+ </servers>
+</settings>