/space-tree/pom.xml
https://bitbucket.org/vishwajeets/wiki-tree-plugin-for-confluence · XML · 108 lines · 99 code · 9 blank · 0 comment · 0 complexity · d6f7b55a9c8e1c73efc10ff3bf7b2e99 MD5 · raw file
- <?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>com.sspl.confluence.plugin.spacetree</groupId>
- <artifactId>space-tree</artifactId>
- <version>0.1</version>
- <organization>
- <name>Sensible Softwares Pvt Ltd</name>
- <url>http://bootstraptoday.com/</url>
- </organization>
- <name>Wiki Tree</name>
- <description>Wiki Tree plugin for Atlassian Confluence, adds tree visualization to your wiki</description>
- <packaging>atlassian-plugin</packaging>
- <dependencies>
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <version>4.6</version>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>com.atlassian.confluence</groupId>
- <artifactId>confluence</artifactId>
- <version>${confluence.version}</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>javax.servlet</groupId>
- <artifactId>servlet-api</artifactId>
- <version>2.4</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>com.google.code.gson</groupId>
- <artifactId>gson</artifactId>
- <version>1.7.1</version>
- </dependency>
- <dependency>
- <groupId>com.atlassian.confluence.plugin</groupId>
- <artifactId>func-test</artifactId>
- <version>2.3</version>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>net.sourceforge.jwebunit</groupId>
- <artifactId>jwebunit-htmlunit-plugin</artifactId>
- <version>2.2</version>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>net.sourceforge.nekohtml</groupId>
- <artifactId>nekohtml</artifactId>
- <version>1.9.12</version>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>com.atlassian.templaterenderer</groupId>
- <artifactId>atlassian-template-renderer-api</artifactId>
- <version>1.3.1</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>com.atlassian.sal</groupId>
- <artifactId>sal-api</artifactId>
- <version>2.0.17</version>
- <scope>provided</scope>
- </dependency>
-
- </dependencies>
- <build>
- <plugins>
- <plugin>
- <groupId>com.atlassian.maven.plugins</groupId>
- <artifactId>maven-confluence-plugin</artifactId>
- <version>${amps.version}</version>
- <extensions>true</extensions>
- <configuration>
- <productVersion>${confluence.version}</productVersion>
- <productDataVersion>${confluence.data.version}</productDataVersion>
- </configuration>
- </plugin>
- <plugin>
- <artifactId>maven-compiler-plugin</artifactId>
- <configuration>
- <source>1.6</source>
- <target>1.6</target>
- </configuration>
- </plugin>
- </plugins>
- </build>
- <properties>
- <confluence.version>4.3</confluence.version>
- <confluence.data.version>4.3</confluence.data.version>
- <amps.version>4.0</amps.version>
- <atlassian.plugin.key>com.sspl.confluence.plugin.spacetree</atlassian.plugin.key>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- </properties>
- </project>