support-confluence
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.randombits.support</groupId>
<artifactId>support-confluence</artifactId>
<version>5.4.0</version>
</dependency><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>
<parent>
<groupId>com.servicerocket.randombits</groupId>
<artifactId>randombits</artifactId>
<version>7</version>
<relativePath />
</parent>
<groupId>org.randombits.support</groupId>
<artifactId>support-confluence</artifactId>
<version>5.4.0</version>
<name>RB Support - Confluence</name>
<description>This is a support library for Confluence plugins, providing some commonly-used classes and libraries.</description>
<packaging>atlassian-plugin</packaging>
<url>https://bitbucket.org/servicerocket/support-confluence</url>
<scm>
<connection>scm:git:ssh://git@bitbucket.org/servicerocket/support-confluence.git</connection>
<developerConnection>scm:git:ssh://git@bitbucket.org/servicerocket/support-confluence.git</developerConnection>
<url>https://bitbucket.org/servicerocket/support-confluence</url>
<tag>5.4.0</tag>
</scm>
<properties>
<atlassian.plugin.key>org.randombits.support.confluence</atlassian.plugin.key>
<platform.minVersion>5.4</platform.minVersion>
<platform.maxVersion>5.9.1</platform.maxVersion>
<rb-utils.version>2.0.0</rb-utils.version>
<support.core.version>1.4.0</support.core.version>
<storage.version>5.5.0</storage.version>
<randombits.test.version>1</randombits.test.version>
<junit.version>4.11</junit.version>
<mockito-all.version>1.9.0-rc1</mockito-all.version>
</properties>
<dependencies>
<!-- Bundled dependencies -->
<dependency>
<groupId>org.randombits.utils</groupId>
<artifactId>rb-utils</artifactId>
<version>${rb-utils.version}</version>
</dependency>
<!-- OSGi Dependencies. -->
<dependency>
<groupId>org.randombits.support</groupId>
<artifactId>support-core</artifactId>
<version>${support.core.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.randombits.storage</groupId>
<artifactId>storage</artifactId>
<version>${storage.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.randombits.storage</groupId>
<artifactId>storage-servlet</artifactId>
<version>${storage.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.randombits.storage</groupId>
<artifactId>storage-confluence</artifactId>
<version>${storage.version}</version>
<scope>provided</scope>
</dependency>
<!-- Confluence Dependencies -->
<dependency>
<groupId>com.atlassian.confluence</groupId>
<artifactId>confluence</artifactId>
<version>${confluence.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.atlassian.confluence.plugins</groupId>
<artifactId>confluence-templates</artifactId>
<version>${confluence.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<version>3.0.1</version>
<scope>provided</scope>
</dependency>
<!-- Required for testing -->
<dependency>
<groupId>com.servicerocket.randombits</groupId>
<artifactId>randombits-test</artifactId>
<version>${randombits.test.version}</version>
<type>test-jar</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<version>4.3.5</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>18.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.atlassian.confluence</groupId>
<artifactId>atlassian-confluence-pageobjects</artifactId>
</dependency>
<dependency>
<groupId>com.atlassian.upm</groupId>
<artifactId>atlassian-universal-plugin-manager-pageobjects</artifactId>
</dependency>
<dependency>
<groupId>com.atlassian.selenium</groupId>
<artifactId>atlassian-webdriver-core</artifactId>
</dependency>
<dependency>
<groupId>com.atlassian.confluence</groupId>
<artifactId>confluence-webdriver-support</artifactId>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-all</artifactId>
<version>${mockito-all.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>com.atlassian.maven.plugins</groupId>
<artifactId>maven-confluence-plugin</artifactId>
<extensions>true</extensions>
<configuration>
<jvmArgs>-Djava.awt.headless=true -Dconfluence.devmode=true -Xmx512m -XX:MaxPermSize=256m</jvmArgs>
<installPlugin>true</installPlugin>
<!-- Specify what to bundle in the OBR -->
<pluginArtifacts>
<pluginArtifact>
<groupId>org.randombits.support</groupId>
<artifactId>support-core</artifactId>
<version>${support.core.version}</version>
</pluginArtifact>
<pluginArtifact>
<groupId>org.randombits.storage</groupId>
<artifactId>storage</artifactId>
<version>${storage.version}</version>
</pluginArtifact>
<pluginArtifact>
<groupId>org.randombits.storage</groupId>
<artifactId>storage-servlet</artifactId>
<version>${storage.version}</version>
</pluginArtifact>
<pluginArtifact>
<groupId>org.randombits.storage</groupId>
<artifactId>storage-confluence</artifactId>
<version>${storage.version}</version>
</pluginArtifact>
</pluginArtifacts>
<pluginDependencies>
<pluginDependency>
<groupId>org.randombits.support</groupId>
<artifactId>support-core</artifactId>
</pluginDependency>
<pluginDependency>
<groupId>org.randombits.storage</groupId>
<artifactId>storage</artifactId>
</pluginDependency>
<pluginDependency>
<groupId>org.randombits.storage</groupId>
<artifactId>storage-servlet</artifactId>
</pluginDependency>
<pluginDependency>
<groupId>org.randombits.storage</groupId>
<artifactId>storage-confluence</artifactId>
</pluginDependency>
</pluginDependencies>
<instructions>
<Export-Package>
org.randombits.support.confluence.*;version="${project.version}"
</Export-Package>
<Import-Package>
org.randombits.support.confluence.*;version="${project.version}",
org.randombits.support.core.*;version="1.4.0",
org.randombits.storage.servlet;version="5.5.0",
org.randombits.storage.confluence;version="5.5.0",
org.randombits.storage;version="5.5.0",
com.atlassian.confluence.*;version="[4,7)",
com.atlassian.renderer.*;version="1.1",
com.atlassian.renderer;version="1.1",
com.atlassian.user;version="3.0",
com.opensymphony.webwork;version="2.1",
com.opensymphony.webwork.dispatcher.multipart;version="2.1",
com.opensymphony.xwork;version="1.0",
org.apache.commons.lang;version="2.4",
javax.servlet;version="[2.3,4)",
javax.servlet.http*;version="[2.3,4)",
javax.mail.*,
org.joda.time.*;version="1.4"
</Import-Package>
<Spring-Context>*;timeout:=60</Spring-Context>
<CONF_COMM />
</instructions>
<testGroups>
<testGroup>
<id>support-confluence-it</id>
<productIds>
<productId>confluence</productId>
</productIds>
<includes>
<include>it/**/*Test.java</include>
</includes>
</testGroup>
</testGroups>
</configuration>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<!-- Required for deployment to Sonatype -->
<id>release-sign-artifacts</id>
<activation>
<property>
<name>performRelease</name>
<value>true</value>
</property>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>