|
|
|
<?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/maven-v4_0_0.xsd">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<groupId>com.englishtown</groupId>
|
|
|
|
<artifactId>stash-hook-mirror</artifactId>
|
|
|
|
<version>2.3.0-SNAPSHOT</version>
|
|
|
|
|
|
|
|
<organization>
|
|
|
|
<name>Englishtown</name>
|
|
|
|
<url>http://www.englishtown.com/</url>
|
|
|
|
</organization>
|
|
|
|
|
|
|
|
<name>Repository Mirror Plugin for Bitbucket Server</name>
|
|
|
|
<description>A Bitbucket Server repository hook for mirroring to one or more remote repositories.</description>
|
|
|
|
<url>https://github.com/ef-labs/stash-hook-mirror</url>
|
|
|
|
<inceptionYear>2013</inceptionYear>
|
|
|
|
<licenses>
|
|
|
|
<license>
|
|
|
|
<name>The MIT License</name>
|
|
|
|
<url>http://englishtown.mit-license.org/license.txt</url>
|
|
|
|
</license>
|
|
|
|
</licenses>
|
|
|
|
<packaging>atlassian-plugin</packaging>
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
|
|
|
|
<maven.compiler.source>1.8</maven.compiler.source>
|
|
|
|
<maven.compiler.target>1.8</maven.compiler.target>
|
|
|
|
|
|
|
|
<bitbucket.version>5.0.2</bitbucket.version>
|
|
|
|
<bitbucket.data.version>${bitbucket.version}</bitbucket.data.version>
|
|
|
|
<atlassian-sal-api.version>3.1.0</atlassian-sal-api.version>
|
|
|
|
<amps.version>6.3.7</amps.version>
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
<dependencyManagement>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.atlassian.bitbucket.server</groupId>
|
|
|
|
<artifactId>bitbucket-parent</artifactId>
|
|
|
|
<version>${bitbucket.version}</version>
|
|
|
|
<type>pom</type>
|
|
|
|
<scope>import</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</dependencyManagement>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.atlassian.bitbucket.server</groupId>
|
|
|
|
<artifactId>bitbucket-api</artifactId>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.atlassian.bitbucket.server</groupId>
|
|
|
|
<artifactId>bitbucket-spi</artifactId>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.atlassian.bitbucket.server</groupId>
|
|
|
|
<artifactId>bitbucket-git-api</artifactId>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.atlassian.sal</groupId>
|
|
|
|
<artifactId>sal-api</artifactId>
|
|
|
|
<version>${atlassian-sal-api.version}</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.mockito</groupId>
|
|
|
|
<artifactId>mockito-core</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>com.atlassian.maven.plugins</groupId>
|
|
|
|
<artifactId>bitbucket-maven-plugin</artifactId>
|
|
|
|
<version>${amps.version}</version>
|
|
|
|
<extensions>true</extensions>
|
|
|
|
<configuration>
|
|
|
|
<products>
|
|
|
|
<product>
|
|
|
|
<id>bitbucket</id>
|
|
|
|
<instanceId>bitbucket</instanceId>
|
|
|
|
<version>${bitbucket.version}</version>
|
|
|
|
<dataVersion>${bitbucket.data.version}</dataVersion>
|
|
|
|
</product>
|
|
|
|
</products>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
<repositories>
|
|
|
|
<repository>
|
|
|
|
<id>atlassian-public</id>
|
|
|
|
<url>https://maven.atlassian.com/content/groups/public</url>
|
|
|
|
<releases>
|
|
|
|
<enabled>true</enabled>
|
|
|
|
<checksumPolicy>warn</checksumPolicy>
|
|
|
|
</releases>
|
|
|
|
</repository>
|
|
|
|
</repositories>
|
|
|
|
|
|
|
|
<pluginRepositories>
|
|
|
|
<pluginRepository>
|
|
|
|
<id>atlassian-public</id>
|
|
|
|
<url>https://maven.atlassian.com/content/groups/public</url>
|
|
|
|
<releases>
|
|
|
|
<enabled>true</enabled>
|
|
|
|
<checksumPolicy>warn</checksumPolicy>
|
|
|
|
</releases>
|
|
|
|
</pluginRepository>
|
|
|
|
</pluginRepositories>
|
|
|
|
|
|
|
|
<scm>
|
|
|
|
<connection>scm:git:git@github.com:ef-labs/stash-hook-mirror.git</connection>
|
|
|
|
<developerConnection>scm:git:git@github.com:ef-labs/stash-hook-mirror.git</developerConnection>
|
|
|
|
<url>https://github.com/ef-labs/stash-hook-mirror</url>
|
|
|
|
<tag>HEAD</tag>
|
|
|
|
</scm>
|
|
|
|
|
|
|
|
<distributionManagement>
|
|
|
|
<snapshotRepository>
|
|
|
|
<id>etown-nexus-snapshots</id>
|
|
|
|
<url>https://nexus-bos.englishtown.com/content/repositories/snapshots</url>
|
|
|
|
</snapshotRepository>
|
|
|
|
<repository>
|
|
|
|
<id>etown-nexus-releases</id>
|
|
|
|
<url>https://nexus-bos.englishtown.com/content/repositories/releases</url>
|
|
|
|
</repository>
|
|
|
|
</distributionManagement>
|
|
|
|
|
|
|
|
<issueManagement>
|
|
|
|
<system>Github Issues</system>
|
|
|
|
<url>https://github.com/ef-labs/stash-hook-mirror/issues</url>
|
|
|
|
</issueManagement>
|
|
|
|
|
|
|
|
</project>
|