230 lines
9.0 KiB
XML
230 lines
9.0 KiB
XML
<?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>su.tiburon.confluence</groupId>
|
|
<artifactId>rest-extender</artifactId>
|
|
<version>1.1.1</version>
|
|
<packaging>atlassian-plugin</packaging>
|
|
|
|
<name>REST API extender for Confluence</name>
|
|
<description>REST API extender for Confluence.</description>
|
|
|
|
<licenses>
|
|
<license>
|
|
<name>BSD 3-Clause License</name>
|
|
<url>https://opensource.org/licenses/BSD-3-Clause</url>
|
|
</license>
|
|
</licenses>
|
|
|
|
<issueManagement>
|
|
<system>Github</system>
|
|
<url>https://github.com/tiburon-777/confluence-rest-extender/issues</url>
|
|
</issueManagement>
|
|
|
|
<scm>
|
|
<connection>scm:git:git://github.com/tiburon-777/confluence-rest-extender.git</connection>
|
|
<developerConnection>scm:git:git@github.com:tiburon-777/confluence-rest-extender.git</developerConnection>
|
|
<url>https://github.com/tiburon-777/confluence-rest-extender</url>
|
|
</scm>
|
|
|
|
<organization>
|
|
<name>OCTOPUS CodeWare</name>
|
|
<url>http://www.tiburon.su/</url>
|
|
</organization>
|
|
|
|
<developers>
|
|
<developer>
|
|
<name>Andrey Ivanov</name>
|
|
<email>ya@tiburon.su</email>
|
|
<organization>OCTOPUS CodeWare</organization>
|
|
<organizationUrl>https://www.tiburon.su</organizationUrl>
|
|
</developer>
|
|
</developers>
|
|
|
|
<repositories>
|
|
<repository>
|
|
<id>atlassian-public</id>
|
|
<url>https://packages.atlassian.com/maven/repository/public</url>
|
|
<snapshots>
|
|
<enabled>true</enabled>
|
|
<updatePolicy>never</updatePolicy>
|
|
<checksumPolicy>warn</checksumPolicy>
|
|
</snapshots>
|
|
<releases>
|
|
<enabled>true</enabled>
|
|
<checksumPolicy>warn</checksumPolicy>
|
|
</releases>
|
|
</repository>
|
|
</repositories>
|
|
<pluginRepositories>
|
|
<pluginRepository>
|
|
<id>atlassian-public</id>
|
|
<url>https://m2proxy.atlassian.com/repository/public/</url>
|
|
<releases>
|
|
<enabled>true</enabled>
|
|
</releases>
|
|
<snapshots>
|
|
<enabled>true</enabled>
|
|
</snapshots>
|
|
</pluginRepository>
|
|
</pluginRepositories>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.json</groupId>
|
|
<artifactId>json</artifactId>
|
|
<version>20090211</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
<version>4.10</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.atlassian.confluence</groupId>
|
|
<artifactId>confluence</artifactId>
|
|
<version>${confluence.version}</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.atlassian.plugin</groupId>
|
|
<artifactId>atlassian-spring-scanner-annotation</artifactId>
|
|
<version>${atlassian.spring.scanner.version}</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>javax.inject</groupId>
|
|
<artifactId>javax.inject</artifactId>
|
|
<version>1</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<!-- WIRED TEST RUNNER DEPENDENCIES -->
|
|
<dependency>
|
|
<groupId>com.atlassian.plugins</groupId>
|
|
<artifactId>atlassian-plugins-osgi-testrunner</artifactId>
|
|
<version>${plugin.testrunner.version}</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>javax.ws.rs</groupId>
|
|
<artifactId>jsr311-api</artifactId>
|
|
<version>1.1.1</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.google.code.gson</groupId>
|
|
<artifactId>gson</artifactId>
|
|
<version>2.2.2-atlassian-1</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>javax.servlet</groupId>
|
|
<artifactId>servlet-api</artifactId>
|
|
<version>2.4</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>javax.xml.bind</groupId>
|
|
<artifactId>jaxb-api</artifactId>
|
|
<version>2.3.1</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.atlassian.plugins.rest</groupId>
|
|
<artifactId>atlassian-rest-common</artifactId>
|
|
<version>1.0.2</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.atlassian.sal</groupId>
|
|
<artifactId>sal-api</artifactId>
|
|
<version>2.10.10</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.wink</groupId>
|
|
<artifactId>wink-client</artifactId>
|
|
<version>1.4</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.mockito</groupId>
|
|
<artifactId>mockito-all</artifactId>
|
|
<version>1.8.5</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>com.atlassian.maven.plugins</groupId>
|
|
<artifactId>confluence-maven-plugin</artifactId>
|
|
<version>${amps.version}</version>
|
|
<extensions>true</extensions>
|
|
<configuration>
|
|
<productVersion>${confluence.version}</productVersion>
|
|
<productDataVersion>${confluence.data.version}</productDataVersion>
|
|
<enableQuickReload>true</enableQuickReload>
|
|
<!-- See here for an explanation of default instructions: -->
|
|
<!-- https://developer.atlassian.com/docs/advanced-topics/configuration-of-instructions-in-atlassian-plugins -->
|
|
<instructions>
|
|
<Atlassian-Plugin-Key>${atlassian.plugin.key}</Atlassian-Plugin-Key>
|
|
<!-- Add package to export here -->
|
|
<Export-Package>sample.api</Export-Package>
|
|
<!-- Add package import here -->
|
|
<Import-Package>
|
|
<!-- For use of @ModuleType -->
|
|
<!-- com.atlassian.plugin.osgi.bridge.external, -->
|
|
<!-- For ConfluenceImports -->
|
|
com.atlassian.confluence.*;resolution:="optional",
|
|
<!-- All the rest should be common to all products -->
|
|
*
|
|
</Import-Package>
|
|
<!-- Ensure plugin is spring powered -->
|
|
<Spring-Context>*</Spring-Context>
|
|
</instructions>
|
|
<skipManifestValidation>true</skipManifestValidation>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>com.atlassian.plugin</groupId>
|
|
<artifactId>atlassian-spring-scanner-maven-plugin</artifactId>
|
|
<version>${atlassian.spring.scanner.version}</version>
|
|
<executions>
|
|
<execution>
|
|
<goals>
|
|
<goal>atlassian-spring-scanner</goal>
|
|
</goals>
|
|
<phase>process-classes</phase>
|
|
</execution>
|
|
</executions>
|
|
<configuration>
|
|
<scannedDependencies>
|
|
<dependency>
|
|
<groupId>com.atlassian.plugin</groupId>
|
|
<artifactId>atlassian-spring-scanner-external-jar</artifactId>
|
|
</dependency>
|
|
</scannedDependencies>
|
|
<verbose>false</verbose>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
<properties>
|
|
<confluence.version>6.14.0</confluence.version>
|
|
<confluence.data.version>6.14.0</confluence.data.version>
|
|
<amps.version>8.0.0</amps.version>
|
|
<plugin.testrunner.version>2.0.1</plugin.testrunner.version>
|
|
<atlassian.spring.scanner.version>2.1.8</atlassian.spring.scanner.version>
|
|
<!-- This property ensures consistency between the key in atlassian-plugin.xml and the OSGi bundle's key. -->
|
|
<atlassian.plugin.key>${project.groupId}.${project.artifactId}</atlassian.plugin.key>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
<maven.compiler.source>1.8</maven.compiler.source>
|
|
<maven.compiler.target>1.8</maven.compiler.target>
|
|
</properties>
|
|
</project>
|