Advertisement
brendanp

pom.xml

Mar 6th, 2014
165
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 9.24 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3.         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>net.artemissoftware.plugins.conf.multiexcerpt4</groupId>
  6.     <artifactId>multiexcerpt-conf-plugin-4</artifactId>
  7.     <version>4.7.3</version>
  8.     <name>Multiexcerpt Plugin4</name>
  9.     <description>MultiExcerpt suite</description>
  10.     <url>http://www.artemissoftware.net</url>
  11.     <organization>
  12.         <name>Artemis Software</name>
  13.         <url>https://artemis.atlassian.net/wiki/display/CMEP/Confluence+Multi-Excerpt+Plugin+Home</url>
  14.     </organization>
  15.     <packaging>atlassian-plugin</packaging>
  16.     <dependencies>
  17.         <dependency>
  18.             <groupId>junit</groupId>
  19.             <artifactId>junit</artifactId>
  20.             <version>4.10</version>
  21.             <scope>test</scope>
  22.         </dependency>
  23.         <dependency>
  24.             <groupId>com.atlassian.confluence</groupId>
  25.             <artifactId>confluence</artifactId>
  26.             <version>${confluence.version}</version>
  27.             <scope>provided</scope>
  28.         </dependency>
  29.         <!-- WIRED TEST RUNNER DEPENDENCIES -->
  30.         <dependency>
  31.             <groupId>com.atlassian.plugins</groupId>
  32.             <artifactId>atlassian-plugins-osgi-testrunner</artifactId>
  33.             <version>${plugin.testrunner.version}</version>
  34.             <scope>test</scope>
  35.         </dependency>
  36.         <dependency>
  37.             <groupId>javax.ws.rs</groupId>
  38.             <artifactId>jsr311-api</artifactId>
  39.             <version>1.1.1</version>
  40.             <scope>provided</scope>
  41.         </dependency>
  42.         <dependency>
  43.             <groupId>com.google.code.gson</groupId>
  44.             <artifactId>gson</artifactId>
  45.             <version>2.2.2-atlassian-1</version>
  46.         </dependency>
  47.         <dependency>
  48.             <groupId>com.atlassian.upm</groupId>
  49.             <artifactId>plugin-license-storage-lib</artifactId>
  50.             <version>${upm.license.compatibility.version}</version>
  51.             <scope>compile</scope>
  52.         </dependency>
  53.         <dependency>
  54.             <groupId>com.atlassian.upm</groupId>
  55.             <artifactId>plugin-license-storage-plugin</artifactId>
  56.             <version>${upm.license.compatibility.version}</version>
  57.             <scope>provided</scope>
  58.         </dependency>
  59.         <dependency>
  60.             <groupId>com.atlassian.upm</groupId>
  61.             <artifactId>licensing-api</artifactId>
  62.             <version>${upm.license.compatibility.version}</version>
  63.             <scope>provided</scope>
  64.         </dependency>
  65.         <dependency>
  66.             <groupId>com.atlassian.upm</groupId>
  67.             <artifactId>upm-api</artifactId>
  68.             <version>${upm.license.compatibility.version}</version>
  69.             <scope>provided</scope>
  70.         </dependency>
  71.         <dependency>
  72.             <groupId>com.atlassian.sal</groupId>
  73.             <artifactId>sal-api</artifactId>
  74.             <version>${sal.api.version}</version>
  75.             <scope>provided</scope>
  76.         </dependency>
  77.         <dependency>
  78.             <groupId>com.atlassian.templaterenderer</groupId>
  79.             <artifactId>atlassian-template-renderer-api</artifactId>
  80.             <version>${atlassian.templaterenderer.version}</version>
  81.             <scope>provided</scope>
  82.         </dependency>
  83.         <dependency>
  84.             <groupId>commons-lang</groupId>
  85.             <artifactId>commons-lang</artifactId>
  86.             <version>2.4</version>
  87.             <scope>provided</scope>
  88.         </dependency>
  89.         <dependency>
  90.             <groupId>org.springframework.osgi</groupId>
  91.             <artifactId>spring-osgi-core</artifactId>
  92.             <version>1.1.3</version>
  93.             <scope>provided</scope>
  94.         </dependency>
  95.         <dependency>
  96.             <groupId>javax.servlet</groupId>
  97.             <artifactId>servlet-api</artifactId>
  98.             <version>2.4</version>
  99.             <scope>provided</scope>
  100.         </dependency>
  101.         <dependency>
  102.             <groupId>org.slf4j</groupId>
  103.             <artifactId>slf4j-api</artifactId>
  104.             <version>1.6.6</version>
  105.             <scope>provided</scope>
  106.         </dependency>
  107.         <dependency>
  108.             <groupId>org.apache.httpcomponents</groupId>
  109.             <artifactId>httpclient</artifactId>
  110.             <version>4.1.1</version>
  111.             <scope>test</scope>
  112.         </dependency>
  113.         <dependency>
  114.             <groupId>org.mockito</groupId>
  115.             <artifactId>mockito-all</artifactId>
  116.             <version>1.8.5</version>
  117.             <scope>test</scope>
  118.         </dependency>
  119.         <!--<dependency>-->
  120.             <!--<groupId>com.atlassian.usercompatibility</groupId>-->
  121.             <!--<artifactId>usercompatibility-sal</artifactId>-->
  122.             <!--<version>0.5</version>-->
  123.             <!--<scope>provided</scope>-->
  124.         <!--</dependency>-->
  125.  
  126.     </dependencies>
  127.     <build>
  128.         <plugins>
  129.             <plugin>
  130.                 <groupId>com.atlassian.maven.plugins</groupId>
  131.                 <artifactId>maven-confluence-plugin</artifactId>
  132.                 <version>${amps.version}</version>
  133.                 <extensions>true</extensions>
  134.                 <configuration>
  135.                     <productVersion>${confluence.version}</productVersion>
  136.                     <productDataVersion>${confluence.data.version}</productDataVersion>
  137.                     <instructions>
  138.                         <Private-Package>com.atlassian.upm.license.storage.lib*</Private-Package>
  139.                         <!--<DynamicImport-Package>com.atlassian.upm.api.license.entity;version="2.0.1",-->
  140.                             <!--com.atlassian.upm.api.license;version="2.0.1", com.atlassian.upm.api.util;version="2.0.1",-->
  141.                             <!--com.atlassian.upm.license.storage.plugin;version="${upm.license.compatibility.version}"-->
  142.                         <!--</DynamicImport-Package>-->
  143.                     </instructions>
  144.                     <bundledArtifacts>
  145.                         <bundledArtifact>
  146.                             <groupId>com.atlassian.upm</groupId>
  147.                             <artifactId>plugin-license-storage-plugin</artifactId>
  148.                             <version>${upm.license.compatibility.version}</version>
  149.                         </bundledArtifact>
  150.                     </bundledArtifacts>
  151.                     <!-- Specify what to bundle in the OBR -->
  152.                     <pluginDependencies>
  153.                         <pluginDependency>
  154.                             <groupId>com.atlassian.upm</groupId>
  155.                             <artifactId>plugin-license-storage-plugin</artifactId>
  156.                         </pluginDependency>
  157.                     </pluginDependencies>
  158.                 </configuration>
  159.             </plugin>
  160.             <plugin>
  161.                 <artifactId>maven-compiler-plugin</artifactId>
  162.                 <configuration>
  163.                     <source>1.6</source>
  164.                     <target>1.6</target>
  165.                 </configuration>
  166.             </plugin>
  167.             <plugin>
  168.                 <artifactId>maven-dependency-plugin</artifactId>
  169.                 <executions>
  170.                     <execution>
  171.                         <id>copy-storage-plugin</id>
  172.                         <phase>process-resources</phase>
  173.                         <goals>
  174.                             <goal>copy-dependencies</goal>
  175.                         </goals>
  176.                         <configuration>
  177.                             <outputDirectory>${project.build.outputDirectory}</outputDirectory>
  178.                             <includeArtifactIds>plugin-license-storage-plugin</includeArtifactIds>
  179.                             <stripVersion>true</stripVersion>
  180.                         </configuration>
  181.                     </execution>
  182.                 </executions>
  183.             </plugin>
  184.         </plugins>
  185.     </build>
  186.     <properties>
  187.         <confluence.version>5.4.3</confluence.version>
  188.         <confluence.data.version>5.4.3</confluence.data.version>
  189.         <amps.version>4.2.18</amps.version>
  190.         <plugin.testrunner.version>1.1.4</plugin.testrunner.version>
  191.         <upm.license.compatibility.version>2.4.1</upm.license.compatibility.version>
  192.         <sal.api.version>2.4.0</sal.api.version>
  193.         <atlassian.templaterenderer.version>1.0.5</atlassian.templaterenderer.version>
  194.         <atlassian.plugin.key>biz.artemissoftware.confluence.multiexcerpt.MultiExcerptMacro</atlassian.plugin.key>
  195.     </properties>
  196. </project>
  197.  
  198.  
  199. <!--<properties>-->
  200.     <!--<confluence.version>5.4.2</confluence.version>-->
  201.     <!--<confluence.data.version>5.4.2</confluence.data.version>-->
  202.     <!--<amps.version>4.2.18</amps.version>-->
  203.     <!--<plugin.testrunner.version>1.1.4</plugin.testrunner.version>-->
  204.     <!--<upm.license.compatibility.version>2.4.1</upm.license.compatibility.version>-->
  205.     <!--<sal.api.version>2.4.0</sal.api.version>-->
  206.     <!--<atlassian.templaterenderer.version>1.0.5</atlassian.templaterenderer.version>-->
  207.     <!--<atlassian.plugin.key>net.artemissoftware.confluence.multiexcerpt.MultiExcerptMacro</atlassian.plugin.key>-->
  208. <!--</properties>-->
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement