|
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
| 2 | + |
| 3 | +<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"> |
| 4 | + <modelVersion>4.0.0</modelVersion> |
| 5 | + <groupId>sk.hts.bamboo.plugins</groupId> |
| 6 | + <artifactId>satisbuild</artifactId> |
| 7 | + <version>1.0.0</version> |
| 8 | + <organization> |
| 9 | + <name>H-Tech Solutions s.r.o.</name> |
| 10 | + <url>http://www.lukashomza.com/</url> |
| 11 | + </organization> |
| 12 | + <name>Satis Build Plugin</name> |
| 13 | + <description>This is the sk.hts.bamboo.plugins:satisbuild plugin for Atlassian Bamboo.</description> |
| 14 | + <packaging>atlassian-plugin</packaging> |
| 15 | + <properties> |
| 16 | + <bamboo.version>5.9.4</bamboo.version> |
| 17 | + <bamboo.data.version>5.9.4</bamboo.data.version> |
| 18 | + <amps.version>6.1.2</amps.version> |
| 19 | + <plugin.testrunner.version>1.2.3</plugin.testrunner.version> |
| 20 | + </properties> |
| 21 | + <dependencies> |
| 22 | + <dependency> |
| 23 | + <groupId>com.atlassian.bamboo</groupId> |
| 24 | + <artifactId>atlassian-bamboo-web</artifactId> |
| 25 | + <version>${bamboo.version}</version> |
| 26 | + <scope>provided</scope> |
| 27 | + </dependency> |
| 28 | + <dependency> |
| 29 | + <groupId>junit</groupId> |
| 30 | + <artifactId>junit</artifactId> |
| 31 | + <version>4.10</version> |
| 32 | + <scope>test</scope> |
| 33 | + </dependency> |
| 34 | + <!-- WIRED TEST RUNNER DEPENDENCIES --> |
| 35 | + <dependency> |
| 36 | + <groupId>com.atlassian.plugins</groupId> |
| 37 | + <artifactId>atlassian-plugins-osgi-testrunner</artifactId> |
| 38 | + <version>${plugin.testrunner.version}</version> |
| 39 | + <scope>test</scope> |
| 40 | + </dependency> |
| 41 | + <dependency> |
| 42 | + <groupId>javax.ws.rs</groupId> |
| 43 | + <artifactId>jsr311-api</artifactId> |
| 44 | + <version>1.1.1</version> |
| 45 | + <scope>provided</scope> |
| 46 | + </dependency> |
| 47 | + <dependency> |
| 48 | + <groupId>com.google.code.gson</groupId> |
| 49 | + <artifactId>gson</artifactId> |
| 50 | + <version>2.2.2-atlassian-1</version> |
| 51 | + </dependency> |
| 52 | + <dependency> |
| 53 | + <groupId>com.mashape.unirest</groupId> |
| 54 | + <artifactId>unirest-java</artifactId> |
| 55 | + <version>1.4.7</version> |
| 56 | + </dependency> |
| 57 | + </dependencies> |
| 58 | + <build> |
| 59 | + <plugins> |
| 60 | + <plugin> |
| 61 | + <groupId>com.atlassian.maven.plugins</groupId> |
| 62 | + <artifactId>maven-bamboo-plugin</artifactId> |
| 63 | + <version>${amps.version}</version> |
| 64 | + <extensions>true</extensions> |
| 65 | + <configuration> |
| 66 | + <productVersion>${bamboo.version}</productVersion> |
| 67 | + <productDataVersion>${bamboo.data.version}</productDataVersion> |
| 68 | + </configuration> |
| 69 | + </plugin> |
| 70 | + <plugin> |
| 71 | + <artifactId>maven-compiler-plugin</artifactId> |
| 72 | + <configuration> |
| 73 | + <source>1.6</source> |
| 74 | + <target>1.6</target> |
| 75 | + </configuration> |
| 76 | + </plugin> |
| 77 | + <plugin> |
| 78 | + <groupId>org.apache.maven.plugins</groupId> |
| 79 | + <artifactId>maven-compiler-plugin</artifactId> |
| 80 | + <configuration> |
| 81 | + <source>1.7</source> |
| 82 | + <target>1.7</target> |
| 83 | + </configuration> |
| 84 | + </plugin> |
| 85 | + </plugins> |
| 86 | + </build> |
| 87 | +</project> |
0 commit comments