Advertisement
Guest User

pom.xml

a guest
Dec 9th, 2015
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.34 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd ">
  4. <modelVersion>4.0.0</modelVersion>
  5. <!-- ====================================================================== -->
  6. <!-- P A R E N T P R O J E C T D E S C R I P T I O N -->
  7. <!-- ====================================================================== -->
  8. <parent>
  9. <groupId>my-group-id</groupId>
  10. <artifactId>myproject</artifactId>
  11. <version>1.0-SNAPSHOT</version>
  12. </parent>
  13.  
  14. <!-- ====================================================================== -->
  15. <!-- P R O J E C T D E S C R I P T I O N -->
  16. <!-- ====================================================================== -->
  17.  
  18. <artifactId>myproject-bundle</artifactId>
  19. <packaging>bundle</packaging>
  20. <name>My Project Bundle</name>
  21. <dependencies>
  22. <dependency>
  23. <groupId>org.osgi</groupId>
  24. <artifactId>org.osgi.compendium</artifactId>
  25. </dependency>
  26. <dependency>
  27. <groupId>org.osgi</groupId>
  28. <artifactId>org.osgi.core</artifactId>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.apache.felix</groupId>
  32. <artifactId>org.apache.felix.scr.annotations</artifactId>
  33. </dependency>
  34. <dependency>
  35. <groupId>biz.aQute</groupId>
  36. <artifactId>bndlib</artifactId>
  37. </dependency>
  38. <dependency>
  39. <groupId>org.slf4j</groupId>
  40. <artifactId>slf4j-api</artifactId>
  41. </dependency>
  42. <dependency>
  43. <groupId>junit</groupId>
  44. <artifactId>junit</artifactId>
  45. </dependency>
  46. <dependency>
  47. <groupId>javax.servlet</groupId>
  48. <artifactId>servlet-api</artifactId>
  49. </dependency>
  50. <dependency>
  51. <groupId>javax.jcr</groupId>
  52. <artifactId>jcr</artifactId>
  53. </dependency>
  54. <dependency>
  55. <groupId>org.apache.sling</groupId>
  56. <artifactId>org.apache.sling.api</artifactId>
  57. </dependency>
  58. <dependency>
  59. <groupId>com.adobe.aem</groupId>
  60. <artifactId>aem-api</artifactId>
  61. <version>6.0.0.1</version>
  62. <scope>provided</scope>
  63. </dependency>
  64. <dependency>
  65. <groupId>org.apache.sling</groupId>
  66. <artifactId>org.apache.sling.jcr.api</artifactId>
  67. </dependency>
  68. <dependency>
  69. <groupId>fr.opensagres.xdocreport</groupId>
  70. <artifactId>xdocreport-gae</artifactId>
  71. <version>1.0.3</version>
  72. </dependency>
  73. <dependency>
  74. <groupId>com.google.code.gson</groupId>
  75. <artifactId>gson</artifactId>
  76. <version>2.2.4</version>
  77. <scope>compile</scope>
  78. </dependency>
  79. <dependency>
  80. <groupId>org.apache.poi</groupId>
  81. <artifactId>poi-ooxml</artifactId>
  82. <version>3.5-FINAL</version>
  83. </dependency>
  84. <dependency>
  85. <groupId>fr.opensagres.xdocreport.itext-gae</groupId>
  86. <artifactId>itext-gae</artifactId>
  87. <version>4.2.0-1</version>
  88. </dependency>
  89. <dependency>
  90. <groupId>org.apache.tika</groupId>
  91. <artifactId>tika-core</artifactId>
  92. <version>1.11</version>
  93. </dependency>
  94. <dependency>
  95. <groupId>org.apache.tika</groupId>
  96. <artifactId>tika-parsers</artifactId>
  97. <version>1.11</version>
  98. </dependency>
  99. <dependency>
  100. <groupId>com.day.commons.osgi.wrapper</groupId>
  101. <artifactId>com.day.commons.osgi.wrapper.commons-lang2</artifactId>
  102. <version>2.5-0001</version>
  103. </dependency>
  104. <dependency>
  105. <groupId>dom4j</groupId>
  106. <artifactId>dom4j</artifactId>
  107. <version>1.6.1</version>
  108. </dependency>
  109. <dependency>
  110. <groupId>org.docx4j</groupId>
  111. <artifactId>docx4j</artifactId>
  112. <version>3.2.1</version>
  113. </dependency>
  114. <dependency>
  115. <groupId>com.adobe.granite</groupId>
  116. <artifactId>com.adobe.granite.poi</artifactId>
  117. <version>1.1.2</version>
  118. <scope>provided</scope>
  119. </dependency>
  120. </dependencies>
  121.  
  122.  
  123. <!-- ====================================================================== -->
  124. <!-- B U I L D D E F I N I T I O N -->
  125. <!-- ====================================================================== -->
  126. <build>
  127. <plugins>
  128. <plugin>
  129. <groupId>org.apache.felix</groupId>
  130. <artifactId>maven-scr-plugin</artifactId>
  131. <executions>
  132. <execution>
  133. <id>generate-scr-descriptor</id>
  134. <goals>
  135. <goal>scr</goal>
  136. </goals>
  137. </execution>
  138. </executions>
  139. <configuration>
  140. <outputDirectory>src/main/resources</outputDirectory>
  141. </configuration>
  142. </plugin>
  143. <plugin>
  144. <groupId>org.apache.felix</groupId>
  145. <artifactId>maven-bundle-plugin</artifactId>
  146. <extensions>true</extensions>
  147. <configuration>
  148. <instructions>
  149. <Bundle-SymbolicName>my-group-id.myproject-bundle</Bundle-SymbolicName>
  150. </instructions>
  151. </configuration>
  152. </plugin>
  153. <plugin>
  154. <groupId>org.apache.sling</groupId>
  155. <artifactId>maven-sling-plugin</artifactId>
  156. <configuration>
  157. <slingUrl>http://${crx.host}:${crx.port}/apps/myapps/install</slingUrl>
  158. <usePut>true</usePut>
  159. </configuration>
  160. </plugin>
  161. <plugin>
  162. <groupId>org.apache.maven.plugins</groupId>
  163. <artifactId>maven-javadoc-plugin</artifactId>
  164. <configuration>
  165. <excludePackageNames>
  166. *.impl
  167. </excludePackageNames>
  168. </configuration>
  169. </plugin>
  170. </plugins>
  171. </build>
  172. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement