/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

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