/space-tree/pom.xml
XML | 108 lines | 99 code | 9 blank | 0 comment | 0 complexity | d6f7b55a9c8e1c73efc10ff3bf7b2e99 MD5 | raw file
1<?xml version="1.0" encoding="UTF-8"?>
2
3<project xmlns="http://maven.apache.org/POM/4.0.0"
4 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
5 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
6
7 <modelVersion>4.0.0</modelVersion>
8 <groupId>com.sspl.confluence.plugin.spacetree</groupId>
9 <artifactId>space-tree</artifactId>
10 <version>0.1</version>
11
12 <organization>
13 <name>Sensible Softwares Pvt Ltd</name>
14 <url>http://bootstraptoday.com/</url>
15 </organization>
16
17 <name>Wiki Tree</name>
18 <description>Wiki Tree plugin for Atlassian Confluence, adds tree visualization to your wiki</description>
19 <packaging>atlassian-plugin</packaging>
20
21 <dependencies>
22 <dependency>
23 <groupId>junit</groupId>
24 <artifactId>junit</artifactId>
25 <version>4.6</version>
26 <scope>test</scope>
27 </dependency>
28 <dependency>
29 <groupId>com.atlassian.confluence</groupId>
30 <artifactId>confluence</artifactId>
31 <version>${confluence.version}</version>
32 <scope>provided</scope>
33 </dependency>
34 <dependency>
35 <groupId>javax.servlet</groupId>
36 <artifactId>servlet-api</artifactId>
37 <version>2.4</version>
38 <scope>provided</scope>
39 </dependency>
40 <dependency>
41 <groupId>com.google.code.gson</groupId>
42 <artifactId>gson</artifactId>
43 <version>1.7.1</version>
44 </dependency>
45 <dependency>
46 <groupId>com.atlassian.confluence.plugin</groupId>
47 <artifactId>func-test</artifactId>
48 <version>2.3</version>
49 <scope>test</scope>
50 </dependency>
51 <dependency>
52 <groupId>net.sourceforge.jwebunit</groupId>
53 <artifactId>jwebunit-htmlunit-plugin</artifactId>
54 <version>2.2</version>
55 <scope>test</scope>
56 </dependency>
57 <dependency>
58 <groupId>net.sourceforge.nekohtml</groupId>
59 <artifactId>nekohtml</artifactId>
60 <version>1.9.12</version>
61 <scope>test</scope>
62 </dependency>
63 <dependency>
64 <groupId>com.atlassian.templaterenderer</groupId>
65 <artifactId>atlassian-template-renderer-api</artifactId>
66 <version>1.3.1</version>
67 <scope>provided</scope>
68 </dependency>
69 <dependency>
70 <groupId>com.atlassian.sal</groupId>
71 <artifactId>sal-api</artifactId>
72 <version>2.0.17</version>
73 <scope>provided</scope>
74 </dependency>
75
76 </dependencies>
77
78 <build>
79 <plugins>
80 <plugin>
81 <groupId>com.atlassian.maven.plugins</groupId>
82 <artifactId>maven-confluence-plugin</artifactId>
83 <version>${amps.version}</version>
84 <extensions>true</extensions>
85 <configuration>
86 <productVersion>${confluence.version}</productVersion>
87 <productDataVersion>${confluence.data.version}</productDataVersion>
88 </configuration>
89 </plugin>
90 <plugin>
91 <artifactId>maven-compiler-plugin</artifactId>
92 <configuration>
93 <source>1.6</source>
94 <target>1.6</target>
95 </configuration>
96 </plugin>
97 </plugins>
98 </build>
99
100 <properties>
101 <confluence.version>4.3</confluence.version>
102 <confluence.data.version>4.3</confluence.data.version>
103 <amps.version>4.0</amps.version>
104 <atlassian.plugin.key>com.sspl.confluence.plugin.spacetree</atlassian.plugin.key>
105 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
106 </properties>
107
108</project>