add maven ftp deploy settings

This commit is contained in:
Martin Pernollet 2014-11-14 10:26:00 +01:00
parent 7d8babbcd4
commit b3c4d30de5
1 changed files with 9 additions and 0 deletions

9
settings.xml Normal file
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>jzy3d-ftp</id>
<username>${env.CI_DEPLOY_USERNAME}</username>
<password>${env.CI_DEPLOY_PASSWORD}</password>
</server>
</servers>
</settings>