Advertisement
ssbarnea

Untitled

Nov 22nd, 2012
514
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.94 KB | None | 0 0
  1.     <dependencies>
  2.         <dependency>
  3.             <groupId>com.atlassian.jira</groupId>
  4.             <artifactId>jira-api</artifactId>
  5.             <version>${jira.version}</version>
  6.             <scope>provided</scope>
  7.         </dependency>
  8.  
  9.         <dependency>
  10.             <groupId>com.atlassian.jira</groupId>
  11.             <artifactId>atlassian-jira</artifactId>
  12.             <version>${jira.version}</version>
  13.             <scope>provided</scope>
  14.         </dependency>
  15.         <!-- Add dependency on jira-core if you want access to JIRA implementation classes as well as the sanctioned API. -->
  16.         <!-- This is not normally recommended, but may be required eg when migrating a plugin originally developed against JIRA 4.x -->
  17.  
  18.         <dependency>
  19.             <groupId>com.atlassian.jira</groupId>
  20.             <artifactId>jira-core</artifactId>
  21.             <version>${jira.version}
  22. </version>
  23.             <scope>provided</scope>
  24.         </dependency>
  25.         <dependency>
  26.             <groupId>junit</groupId>
  27.             <artifactId>junit</artifactId>
  28.             <version>RELEASE</version>
  29.             <scope>test</scope>
  30.         </dependency>
  31.         <dependency>
  32.             <groupId>com.atlassian.jira</groupId>
  33.             <artifactId>jira-func-tests</artifactId>
  34.             <version>RELEASE</version>
  35.             <scope>test</scope>
  36.         </dependency>
  37.         <dependency>
  38.             <groupId>com.atlassian.plugins</groupId>
  39.             <artifactId>atlassian-plugins-webresource</artifactId>
  40.             <version>RELEASE</version>
  41.         </dependency>
  42.  
  43.         <dependency>
  44.             <groupId>javax.servlet</groupId>
  45.             <artifactId>servlet-api</artifactId>
  46.             <version>2.5</version>
  47.             <scope>provided</scope>
  48.         </dependency>
  49.         <dependency>
  50.             <groupId>postgresql</groupId>
  51.             <artifactId>postgresql</artifactId>
  52.             <version>9.1-901-1.jdbc4</version>
  53.         </dependency>
  54.  
  55.  
  56. <dependency>
  57.         <groupId>org.apache.axis</groupId>
  58.         <artifactId>axis</artifactId>
  59.         <version>1.4</version>
  60.     </dependency>
  61.     <dependency>
  62.         <groupId>axis</groupId>
  63.         <artifactId>axis</artifactId>
  64.         <version>1.3-atlassian-1</version>
  65.         <scope>provided</scope>
  66.     </dependency>
  67.  
  68.     </dependencies>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement