Advertisement
Guest User

pom.xml

a guest
Jul 14th, 2013
46
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 5.35 KB | None | 0 0
  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>mypackage</groupId>
  6.     <artifactId>mygadget</artifactId>
  7.     <version>1.0.0-SNAPSHOT</version>
  8.     <organization>
  9.         <name>MyOrg</name>
  10.         <url>http://my.org</url>
  11.     </organization>
  12.     <name>Gadget</name>
  13.     <description>A gadget.</description>
  14.     <packaging>atlassian-plugin</packaging>
  15.     <properties>
  16.         <jira.version>5.2.8</jira.version>
  17.         <jira.data.version>5.1.8</jira.data.version>
  18.         <amps.version>4.1.7</amps.version>
  19.         <plugin.testrunner.version>1.1</plugin.testrunner.version>
  20.     </properties>
  21.     <dependencies>
  22.         <!-- Compile time dependencies -->
  23.         <!-- Provided dependencies -->
  24.         <dependency>
  25.             <groupId>com.atlassian.jira</groupId>
  26.             <artifactId>jira-core</artifactId>
  27.             <version>${jira.version}</version>
  28.             <scope>provided</scope>
  29.         </dependency>
  30.         <dependency>
  31.             <groupId>com.atlassian.plugins</groupId>
  32.             <artifactId>atlassian-plugins-core</artifactId>
  33.             <version>2.9.6</version>
  34.             <scope>provided</scope>
  35.         </dependency>
  36.         <dependency>
  37.             <groupId>log4j</groupId>
  38.             <artifactId>log4j</artifactId>
  39.             <version>1.2.17</version>
  40.             <scope>provided</scope>
  41.         </dependency>
  42.         <dependency>
  43.             <groupId>org.slf4j</groupId>
  44.             <artifactId>slf4j-api</artifactId>
  45.             <version>1.7.2</version>
  46.             <scope>provided</scope>
  47.         </dependency>
  48.         <dependency>
  49.             <groupId>org.slf4j</groupId>
  50.             <artifactId>slf4j-log4j12</artifactId>
  51.             <version>1.7.2</version>
  52.             <scope>provided</scope>
  53.         </dependency>
  54.         <!-- REST Dependencies -->
  55.         <dependency>
  56.             <groupId>com.atlassian.plugins.rest</groupId>
  57.             <artifactId>atlassian-rest-module</artifactId>
  58.             <version>2.7.3</version>
  59.             <scope>provided</scope>
  60.         </dependency>
  61.         <dependency>
  62.             <groupId>com.atlassian.plugins.rest</groupId>
  63.             <artifactId>atlassian-rest-common</artifactId>
  64.             <version>2.7.3</version>
  65.             <scope>provided</scope>
  66.         </dependency>
  67.         <dependency>
  68.             <groupId>javax.xml.bind</groupId>
  69.             <artifactId>jaxb-api</artifactId>
  70.             <version>2.2.7</version>
  71.             <scope>provided</scope>
  72.         </dependency>
  73.         <dependency>
  74.             <groupId>javax.ws.rs</groupId>
  75.             <artifactId>jsr311-api</artifactId>
  76.             <version>1.1.1</version>
  77.             <scope>provided</scope>
  78.         </dependency>
  79.         <dependency>
  80.             <groupId>com.google.code.gson</groupId>
  81.             <artifactId>gson</artifactId>
  82.             <version>2.2.2-atlassian-1</version>
  83.         </dependency>
  84.         <dependency>
  85.             <groupId>com.sun.jersey</groupId>
  86.             <artifactId>jersey-server</artifactId>
  87.             <version>1.17</version>
  88.             <scope>provided</scope>
  89.         </dependency>
  90.         <!-- Test dependencies -->
  91.         <dependency>
  92.             <groupId>com.atlassian.plugins</groupId>
  93.             <artifactId>atlassian-plugins-osgi-testrunner</artifactId>
  94.             <version>${plugin.testrunner.version}</version>
  95.             <scope>test</scope>
  96.         </dependency>
  97.         <dependency>
  98.             <groupId>org.mockito</groupId>
  99.             <artifactId>mockito-all</artifactId>
  100.             <version>1.8.5</version>
  101.             <scope>test</scope>
  102.         </dependency>
  103.         <dependency>
  104.             <groupId>junit</groupId>
  105.             <artifactId>junit</artifactId>
  106.             <version>4.11</version>
  107.             <scope>test</scope>
  108.         </dependency>
  109.         <dependency>
  110.             <groupId>com.sun.jersey</groupId>
  111.             <artifactId>jersey-client</artifactId>
  112.             <version>1.17</version>
  113.             <scope>test</scope>
  114.         </dependency>
  115.         <dependency>
  116.             <groupId>org.seleniumhq.selenium</groupId>
  117.             <artifactId>selenium-java</artifactId>
  118.             <version>2.32.0</version>
  119.         </dependency>
  120.     </dependencies>
  121.     <build>
  122.         <plugins>
  123.             <plugin>
  124.                 <groupId>com.atlassian.maven.plugins</groupId>
  125.                 <artifactId>maven-jira-plugin</artifactId>
  126.                 <version>${amps.version}</version>
  127.                 <extensions>true</extensions>
  128.                 <configuration>
  129.                     <productVersion>${jira.version}</productVersion>
  130.                     <productDataVersion>${jira.data.version}</productDataVersion>
  131.                     <productDataPath>${basedir}/src/test/resources/generated-test-resources.zip</productDataPath>
  132.                 </configuration>
  133.             </plugin>
  134.             <plugin>
  135.                 <artifactId>maven-compiler-plugin</artifactId>
  136.                 <configuration>
  137.                     <source>1.6</source>
  138.                     <target>1.6</target>
  139.                 </configuration>
  140.             </plugin>
  141.         </plugins>
  142.     </build>
  143. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement