aboutsummaryrefslogtreecommitdiff
path: root/.cisettings.xml
diff options
context:
space:
mode:
authorThomas Lenz <tlenz@iaik.tugraz.at>2021-11-22 17:25:00 +0100
committerThomas Lenz <tlenz@iaik.tugraz.at>2021-11-22 17:25:00 +0100
commitfc0385dbeee71f1ce18783ef1c7a4d06288fdb0d (patch)
tree48c1c7ce79bbf02a5c369cb3c2d135359c17bbb8 /.cisettings.xml
parente3d6ec57d438058cc9d36905c327cd5c9f0233ce (diff)
parent9128d32d0bbbdc4d7183d3e189ffd3f59905aad5 (diff)
downloadmoa-id-spss-fc0385dbeee71f1ce18783ef1c7a4d06288fdb0d.tar.gz
moa-id-spss-fc0385dbeee71f1ce18783ef1c7a4d06288fdb0d.tar.bz2
moa-id-spss-fc0385dbeee71f1ce18783ef1c7a4d06288fdb0d.zip
Merge branch 'master' of gitlab.iaik.tugraz.at:egiz/moa-idspss
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>