diff options
author | Thomas Lenz <thomas.lenz@egiz.gv.at> | 2019-09-11 09:05:42 +0200 |
---|---|---|
committer | Thomas Lenz <thomas.lenz@egiz.gv.at> | 2019-09-11 09:05:42 +0200 |
commit | 3bbeb8639c97d2c3ae56807d16153acb3212f636 (patch) | |
tree | 4b7f4a118abef43fd96032cb1f8ec97af97603a4 /pom.xml | |
parent | 6b5d5b5a8d14a2b22a0e86bb2564e012de95a2e6 (diff) | |
download | EAAF-Components-3bbeb8639c97d2c3ae56807d16153acb3212f636.tar.gz EAAF-Components-3bbeb8639c97d2c3ae56807d16153acb3212f636.tar.bz2 EAAF-Components-3bbeb8639c97d2c3ae56807d16153acb3212f636.zip |
add deployment configuration for jenkins build
Diffstat (limited to 'pom.xml')
-rw-r--r-- | pom.xml | 56 |
1 files changed, 56 insertions, 0 deletions
@@ -102,6 +102,54 @@ </repository> </repositories> </profile> + <profile> + <id>jenkinsDeploy</id> + <distributionManagement> + <repository> + <id>egizMaven</id> + <url>sftp://apps.egiz.gv.at</url> + </repository> + <snapshotRepository> + <id>egizMaven</id> + <url>sftp://apps.egiz.gv.at</url> + </snapshotRepository> + </distributionManagement> + <repositories> + <repository> + <id>egiz-commons</id> + <url>https://apps.egiz.gv.at/maven/</url> + <releases> + <enabled>true</enabled> + </releases> + </repository> + <repository> + <id>shibboleth.internet2.edu</id> + <name>Internet2</name> + <url>https://apps.egiz.gv.at/shibboleth_nexus/</url> + </repository> + </repositories> + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-deploy-plugin</artifactId> + <version>2.8.2</version> + <configuration> + <deployAtEnd>true</deployAtEnd> + </configuration> + <executions> + <execution> + <id>default-deploy</id> + <phase>deploy</phase> + <goals> + <goal>deploy</goal> + </goals> + </execution> + </executions> + </plugin> + </plugins> + </build> + </profile> </profiles> <modules> @@ -393,6 +441,14 @@ </dependencyManagement> <build> + <extensions> + <extension> + <groupId>org.apache.maven.wagon</groupId> + <artifactId>wagon-ssh</artifactId> + <version>3.3.3</version> + </extension> + </extensions> + <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> |