summaryrefslogtreecommitdiff
path: root/.cisettings.xml
diff options
context:
space:
mode:
authorThomas Lenz <thomas.lenz@egiz.gv.at>2020-12-16 17:51:54 +0100
committerThomas Lenz <thomas.lenz@egiz.gv.at>2020-12-16 17:51:54 +0100
commit0533ee2174213200d9f0d777bc09ddc5c3d508c6 (patch)
tree770578e0e76110d3d3210b111e17c98e79528348 /.cisettings.xml
parent167d50a81758bd9235eae6755495d5fa68e1c697 (diff)
downloadegovutils-0533ee2174213200d9f0d777bc09ddc5c3d508c6.tar.gz
egovutils-0533ee2174213200d9f0d777bc09ddc5c3d508c6.tar.bz2
egovutils-0533ee2174213200d9f0d777bc09ddc5c3d508c6.zip
add GitLab CI 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 0000000..8556c6a
--- /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>