mirror of
https://github.com/Fishwaldo/Bamboo-GitHub.git
synced 2025-03-15 18:31:21 +00:00
95 lines
3.4 KiB
XML
95 lines
3.4 KiB
XML
<?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.carolynvs</groupId>
|
|
<artifactId>gitallthethings</artifactId>
|
|
<version>0.9.0.1</version>
|
|
|
|
<organization>
|
|
<name>Carolyn Van Slyck</name>
|
|
<url>http://carolynvanslyck.com/</url>
|
|
</organization>
|
|
|
|
<name>Git All The Things!</name>
|
|
<description>Grab-bag of useful git bits: GitHub PullRequest WebHook, Pull Request Checkout Task
|
|
</description>
|
|
<packaging>atlassian-plugin</packaging>
|
|
|
|
<properties>
|
|
<bamboo.version>5.9.0</bamboo.version>
|
|
<bamboo.data.version>5.9.0</bamboo.data.version>
|
|
<amps.version>5.0.13</amps.version>
|
|
<plugin.testrunner.version>1.2.3</plugin.testrunner.version>
|
|
</properties>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.atlassian.bamboo</groupId>
|
|
<artifactId>atlassian-bamboo-web</artifactId>
|
|
<version>${bamboo.version}</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.atlassian.plugins.rest</groupId>
|
|
<artifactId>atlassian-rest-common</artifactId>
|
|
<version>1.1.0</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.atlassian.bamboo.plugins</groupId>
|
|
<artifactId>atlassian-bamboo-plugin-rest</artifactId>
|
|
<version>${bamboo.version}</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.atlassian.bamboo.plugins</groupId>
|
|
<artifactId>atlassian-bamboo-plugin-git</artifactId>
|
|
<version>${bamboo.version}</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.atlassian.activeobjects</groupId>
|
|
<artifactId>activeobjects-plugin</artifactId>
|
|
<version>0.25.2</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.atlassian.sal</groupId>
|
|
<artifactId>sal-api</artifactId>
|
|
<version>2.4.1</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.codehaus.jackson</groupId>
|
|
<artifactId>jackson-mapper-asl</artifactId>
|
|
<version>1.9.2</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>com.atlassian.maven.plugins</groupId>
|
|
<artifactId>maven-bamboo-plugin</artifactId>
|
|
<version>${amps.version}</version>
|
|
<extensions>true</extensions>
|
|
<configuration>
|
|
<productVersion>${bamboo.version}</productVersion>
|
|
<productDataVersion>${bamboo.data.version}</productDataVersion>
|
|
</configuration>
|
|
</plugin>
|
|
|
|
<plugin>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<configuration>
|
|
<source>1.6</source>
|
|
<target>1.6</target>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project>
|