blob: d123abab58c626d6bd68bba3f433eb013ee17528 [file] [log] [blame]
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.apache</groupId>
<artifactId>apache</artifactId>
<version>23</version>
</parent>
<groupId>org.apache.james</groupId>
<artifactId>james-jenkins-tools</artifactId>
<version>0.1.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Apache James: Jenkins Tools</name>
<description>Set of helpers to do individual tasks only needed on our Jenkins build.</description>
<!-- See https://cwiki.apache.org/confluence/display/INFRA/Multibranch+Pipeline+recipes#MultibranchPipelinerecipes-DeployingWebsiteContent -->
<!-- We are publishing the site to a different repository -->
<distributionManagement>
<site>
<id>apache.website</id>
<url>scm:git:https://gitbox.apache.org/repos/asf/james-site.git</url>
</site>
</distributionManagement>
<profiles>
<profile>
<id>deploy-site</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-scm-publish-plugin</artifactId>
<configuration>
<content>doc-sites/build/site</content>
<scmBranch>asf-staging</scmBranch>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>