Skip to content

Instantly share code, notes, and snippets.

Created June 5, 2013 11:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save anonymous/5713256 to your computer and use it in GitHub Desktop.
Save anonymous/5713256 to your computer and use it in GitHub Desktop.
jira plugin
<?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.xensource.jira</groupId>
<artifactId>testrun</artifactId>
<version>1.12</version>
<organization>
<name>Citrix</name>
<url>http://www.citrix.com/</url>
</organization>
<name>Citrix TestRun Servlet</name>
<description>This is the com.xensource.jira.testrun:testrun plugin for Atlassian JIRA.</description>
<packaging>atlassian-plugin</packaging>
<prerequisites>
<maven>2.1.0</maven>
</prerequisites>
<repositories>
<repository>
<id>atlassian-public</id>
<name>Atlassian Public</name>
<url>https://maven.atlassian.com/repository/public</url>
</repository>
<repository>
<id>atlassian-contrib</id>
<url>https://maven.atlassian.com/contrib</url>
</repository>
<repository>
<id>jetty</id>
<url>http://oss.sonatype.org/content/groups/jetty</url>
</repository>
<repository>
<id>central-sync</id>
<name>Central Sync Sources</name>
<url>https://oss.sonatype.org/content/repositories/central-sync</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>com.googlecode.json-simple</groupId>
<scope>compile</scope>
<version>1.1.1</version>
<artifactId>json-simple</artifactId>
</dependency>
<dependency>
<groupId>com.atlassian.jira</groupId>
<artifactId>jira-api</artifactId>
<version>${jira.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.atlassian.jira</groupId>
<artifactId>atlassian-jira</artifactId>
<version>${jira.version}</version>
<scope>provided</scope>
</dependency>
<!-- Add dependency on jira-core if you want access to JIRA implementation classes as well as the sanctioned API. -->
<!-- This is not normally recommended, but may be required eg when migrating a plugin originally developed against JIRA 4.x -->
<dependency>
<groupId>com.atlassian.jira</groupId>
<artifactId>jira-core</artifactId>
<version>${jira.version}
</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.11</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.atlassian.jira</groupId>
<artifactId>jira-func-tests</artifactId>
<version>6.1-project-templates-1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.atlassian.plugins</groupId>
<artifactId>atlassian-plugins-webresource</artifactId>
<version>3.0.0-m9</version>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
<version>3.0-alpha-1</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>postgresql</groupId>
<artifactId>postgresql</artifactId>
<version>9.2-1002.jdbc4</version>
</dependency>
<dependency>
<groupId>org.apache.axis</groupId>
<artifactId>axis</artifactId>
<version>1.4</version>
</dependency>
<dependency>
<groupId>axis</groupId>
<artifactId>axis</artifactId>
<version>1.4</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.atlassian.core</groupId>
<artifactId>atlassian-core</artifactId>
<version>2007-05-11</version>
</dependency>
<dependency>
<groupId>com.atlassian.bonfire</groupId>
<artifactId>atlassian-bonfire-plugin</artifactId>
<version>2.6.7</version>
</dependency>
<dependency>
<groupId>com.atlassian.crowd</groupId>
<artifactId>crowd-integration-client</artifactId>
<version>2.7.0-m1</version>
</dependency>
<dependency>
<groupId>com.atlassian.crowd</groupId>
<artifactId>embedded-crowd-api</artifactId>
<version>2.7.0-m1</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<artifactId>maven-release-plugin</artifactId>
<version>2.2.2</version>
<configuration>
</configuration>
</plugin>
<plugin>
<groupId>com.atlassian.maven.plugins</groupId>
<artifactId>maven-jira-plugin</artifactId>
<version>${amps.version}</version>
<extensions>true</extensions>
<configuration>
<productVersion>${jira.version}</productVersion>
<productDataVersion>${jira.version}</productDataVersion>
<!--<log4jProperties>src/aps/log4j.properties</log4jProperties> -->
<instructions>
<!-- OSGi intructions go there -->
</instructions>
</configuration>
</plugin>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
</plugins>
<pluginManagement>
<plugins>
<!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself. -->
<plugin>
<groupId>org.eclipse.m2e</groupId>
<artifactId>lifecycle-mapping</artifactId>
<version>1.0.0</version>
<configuration>
<lifecycleMappingMetadata>
<pluginExecutions>
<pluginExecution>
<pluginExecutionFilter>
<groupId>
com.atlassian.maven.plugins
</groupId>
<artifactId>
maven-jira-plugin
</artifactId>
<versionRange>[RELEASE,)</versionRange>
<goals>
<goal>
filter-test-plugin-descriptor
</goal>
<goal>
generate-test-manifest
</goal>
<goal>
copy-test-bundled-dependencies
</goal>
<goal>
generate-rest-docs
</goal>
<goal>
generate-manifest
</goal>
<goal>
compress-resources
</goal>
<goal>
filter-plugin-descriptor
</goal>
</goals>
</pluginExecutionFilter>
<action>
<ignore></ignore>
</action>
</pluginExecution>
</pluginExecutions>
</lifecycleMappingMetadata>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
<properties>
<jira.version>5.2</jira.version>
<!-- <jira.data.version>${env.JIRA_DATA_VERSION}</jira.data.version> -->
<amps.version>4.1.1</amps.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
</project>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment