xdocreport-parent-1.0.6.pom 9.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323
  1. <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/xsd/maven-4.0.0.xsd">
  2. <modelVersion>4.0.0</modelVersion>
  3. <groupId>fr.opensagres.xdocreport</groupId>
  4. <artifactId>xdocreport-parent</artifactId>
  5. <version>1.0.6</version>
  6. <packaging>pom</packaging>
  7. <description>XDocReport means XML Document reporting. It's Java API to merge XML document created with MS Office (docx) or OpenOffice (odt), LibreOffice (odt) with a Java model to generate report and convert it if you need to another format (PDF, XHTML...).</description>
  8. <parent>
  9. <groupId>org.sonatype.oss</groupId>
  10. <artifactId>oss-parent</artifactId>
  11. <version>7</version>
  12. </parent>
  13. <licenses>
  14. <license>
  15. <name>The MIT License (MIT)</name>
  16. <url>http://www.opensource.org/licenses/mit-license.php</url>
  17. <distribution>repo</distribution>
  18. </license>
  19. </licenses>
  20. <properties>
  21. <osgi-version-qualifier>${maven.build.timestamp}</osgi-version-qualifier>
  22. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  23. <maven.build.timestamp.format>yyyyMMddHHmm</maven.build.timestamp.format>
  24. </properties>
  25. <build>
  26. <defaultGoal>install</defaultGoal>
  27. <plugins>
  28. <plugin>
  29. <artifactId>maven-compiler-plugin</artifactId>
  30. <configuration>
  31. <source>1.5</source>
  32. <target>1.5</target>
  33. </configuration>
  34. </plugin>
  35. <plugin>
  36. <artifactId>maven-surefire-plugin</artifactId>
  37. <configuration>
  38. <forkMode>always</forkMode>
  39. <!-- It's better to use "target" folder as basedir for tests... -->
  40. <basedir>${project.build.directory}</basedir>
  41. <redirectTestOutputToFile>true</redirectTestOutputToFile>
  42. </configuration>
  43. </plugin>
  44. <plugin>
  45. <artifactId>maven-jar-plugin</artifactId>
  46. <configuration>
  47. <archive>
  48. <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
  49. <manifest>
  50. <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
  51. <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
  52. </manifest>
  53. </archive>
  54. </configuration>
  55. </plugin>
  56. <plugin>
  57. <groupId>org.apache.felix</groupId>
  58. <artifactId>maven-bundle-plugin</artifactId>
  59. <extensions>true</extensions>
  60. <executions>
  61. <execution>
  62. <id>bundle-manifest</id>
  63. <phase>process-classes</phase>
  64. <goals>
  65. <goal>manifest</goal>
  66. </goals>
  67. </execution>
  68. </executions>
  69. <configuration>
  70. <!-- <unpackBundle>true</unpackBundle> -->
  71. <instructions>
  72. <_include>TEMPLATE.MF</_include>
  73. <_snapshot>${osgi-version-qualifier}</_snapshot>
  74. <_nouses>true</_nouses>
  75. <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
  76. <Bundle-RequiredExecutionEnvironment>J2SE-1.5, JavaSE-1.6</Bundle-RequiredExecutionEnvironment>
  77. </instructions>
  78. </configuration>
  79. </plugin>
  80. <plugin>
  81. <artifactId>maven-release-plugin</artifactId>
  82. <configuration>
  83. <preparationGoals>clean install -DskipTests</preparationGoals>
  84. <autoVersionSubmodules>true</autoVersionSubmodules>
  85. </configuration>
  86. </plugin>
  87. <plugin>
  88. <groupId>com.mycila.maven-license-plugin</groupId>
  89. <artifactId>maven-license-plugin</artifactId>
  90. <configuration>
  91. <basedir>${basedir}</basedir>
  92. <header>header.txt</header>
  93. <includes>
  94. <include>src/**</include>
  95. <include>**/test/**</include>
  96. <include>build.properties</include>
  97. <include>plugin.xml</include>
  98. </includes>
  99. <excludes>
  100. <exclude>target/**</exclude>
  101. <exclude>**/*.txt</exclude>
  102. <exclude>**/*.xml</exclude>
  103. </excludes>
  104. </configuration>
  105. </plugin>
  106. <plugin>
  107. <artifactId>maven-source-plugin</artifactId>
  108. <version>2.1.2</version>
  109. <configuration>
  110. <attach>true</attach>
  111. </configuration>
  112. <executions>
  113. <execution>
  114. <id>attach-sources</id>
  115. <phase>verify</phase>
  116. <goals>
  117. <goal>jar</goal>
  118. </goals>
  119. </execution>
  120. </executions>
  121. </plugin>
  122. <plugin>
  123. <groupId>org.apache.maven.plugins</groupId>
  124. <artifactId>maven-site-plugin</artifactId>
  125. <version>3.0</version>
  126. <configuration>
  127. <reportPlugins>
  128. <plugin>
  129. <groupId>org.apache.maven.plugins</groupId>
  130. <artifactId>maven-project-info-reports-plugin</artifactId>
  131. <version>2.2</version>
  132. <configuration>
  133. <dependencyDetailsEnabled>true</dependencyDetailsEnabled>
  134. <dependencyLocationsEnabled>true</dependencyLocationsEnabled>
  135. </configuration>
  136. </plugin>
  137. <plugin>
  138. <groupId>org.apache.maven.plugins</groupId>
  139. <artifactId>maven-javadoc-plugin</artifactId>
  140. <version>2.9.1</version>
  141. </plugin>
  142. <plugin>
  143. <groupId>org.apache.maven.plugins</groupId>
  144. <artifactId>maven-surefire-report-plugin</artifactId>
  145. <version>2.6</version>
  146. </plugin>
  147. </reportPlugins>
  148. </configuration>
  149. </plugin>
  150. </plugins>
  151. <pluginManagement>
  152. <plugins>
  153. <plugin>
  154. <artifactId>maven-jar-plugin</artifactId>
  155. <version>2.3.1</version>
  156. </plugin>
  157. <plugin>
  158. <artifactId>maven-clean-plugin</artifactId>
  159. <version>2.5</version>
  160. </plugin>
  161. <plugin>
  162. <artifactId>maven-deploy-plugin</artifactId>
  163. <version>2.8.1</version>
  164. </plugin>
  165. <plugin>
  166. <groupId>com.mycila.maven-license-plugin</groupId>
  167. <artifactId>maven-license-plugin</artifactId>
  168. <version>1.9.0</version>
  169. </plugin>
  170. <plugin>
  171. <artifactId>maven-surefire-plugin</artifactId>
  172. <version>2.14</version>
  173. </plugin>
  174. <plugin>
  175. <groupId>org.apache.felix</groupId>
  176. <artifactId>maven-bundle-plugin</artifactId>
  177. <version>2.3.7</version>
  178. </plugin>
  179. <plugin>
  180. <artifactId>maven-compiler-plugin</artifactId>
  181. <version>3.1</version>
  182. </plugin>
  183. <plugin>
  184. <artifactId>maven-release-plugin</artifactId>
  185. <version>2.5</version>
  186. </plugin>
  187. <plugin>
  188. <artifactId>maven-assembly-plugin</artifactId>
  189. <version>2.4</version>
  190. </plugin>
  191. <plugin>
  192. <artifactId>maven-failsafe-plugin</artifactId>
  193. <version>2.17</version>
  194. </plugin>
  195. <plugin>
  196. <groupId>org.codehaus.mojo</groupId>
  197. <artifactId>cobertura-maven-plugin</artifactId>
  198. <version>2.5.1</version>
  199. </plugin>
  200. </plugins>
  201. </pluginManagement>
  202. </build>
  203. <developers>
  204. <developer>
  205. <id>angelozerr</id>
  206. <name>Angelo Zerr</name>
  207. <email>angelo.zerr@gmail.com</email>
  208. <roles>
  209. <role>architect</role>
  210. <role>developper</role>
  211. </roles>
  212. <timezone>+1</timezone>
  213. </developer>
  214. <developer>
  215. <id>pascalleclercq</id>
  216. <name>Pascal Leclercq</name>
  217. <email>pascal.leclercq@gmail.com</email>
  218. <roles>
  219. <role>developper</role>
  220. </roles>
  221. <timezone>+1</timezone>
  222. </developer>
  223. <developer>
  224. <id>aminebousta</id>
  225. <name>Amine Bousta</name>
  226. <email>abousta@gmail.com</email>
  227. <roles>
  228. <role>developper</role>
  229. </roles>
  230. <timezone>+1</timezone>
  231. </developer>
  232. <developer>
  233. <id>tiry</id>
  234. <name>Thierry Delprat</name>
  235. <email>tdelprat@nuxeo.com</email>
  236. <roles>
  237. <role>developper</role>
  238. </roles>
  239. <timezone>+1</timezone>
  240. </developer>
  241. </developers>
  242. <scm>
  243. <connection>scm:git:https://github.com/opensagres/xdocreport.git</connection>
  244. <developerConnection>scm:git:https://github.com/opensagres/xdocreport.git</developerConnection>
  245. <url>https://github.com/opensagres/xdocreport/</url>
  246. <tag>xdocreport-parent-1.0.6</tag>
  247. </scm>
  248. <modules>
  249. <module>thirdparties-extension</module>
  250. <module>core</module>
  251. <module>tools</module>
  252. <module>document</module>
  253. <module>template</module>
  254. <module>converter</module>
  255. <module>integrationtests</module>
  256. <module>sandbox</module>
  257. <module>remoting</module>
  258. <module>gae</module>
  259. <module>uberjar</module>
  260. </modules>
  261. <dependencies>
  262. <dependency>
  263. <groupId>junit</groupId>
  264. <artifactId>junit</artifactId>
  265. <version>4.10</version>
  266. <scope>test</scope>
  267. </dependency>
  268. <dependency>
  269. <groupId>org.osgi</groupId>
  270. <artifactId>org.osgi.core</artifactId>
  271. <version>4.2.0</version>
  272. <scope>provided</scope>
  273. </dependency>
  274. </dependencies>
  275. <issueManagement>
  276. <system>Google Code</system>
  277. <url>http://code.google.com/p/xdocreport/issues/list</url>
  278. </issueManagement>
  279. <url>http://code.google.com/p/xdocreport/</url>
  280. <name>XDocReport</name>
  281. <ciManagement>
  282. <system>Jenkins</system>
  283. <url>https://opensagres.ci.cloudbees.com/job/xdocreport/</url>
  284. <notifiers>
  285. <notifier>
  286. <address>pascal.leclercq@gmail.com</address>
  287. </notifier>
  288. <notifier>
  289. <address>angelo.zerr@gmail.com</address>
  290. </notifier>
  291. <notifier>
  292. <address>tdelprat@nuxeo.com</address>
  293. </notifier>
  294. </notifiers>
  295. </ciManagement>
  296. <profiles>
  297. <profile>
  298. <activation>
  299. <property>
  300. <name>m2e.version</name>
  301. </property>
  302. </activation>
  303. <properties>
  304. <osgi-version-qualifier>qualifier</osgi-version-qualifier>
  305. </properties>
  306. <build>
  307. <pluginManagement>
  308. <plugins>
  309. <plugin>
  310. <groupId>org.apache.felix</groupId>
  311. <artifactId>maven-bundle-plugin</artifactId>
  312. <configuration>
  313. <!-- PDE does not honour custom manifest location -->
  314. <manifestLocation>META-INF</manifestLocation>
  315. </configuration>
  316. </plugin>
  317. </plugins>
  318. </pluginManagement>
  319. </build>
  320. </profile>
  321. </profiles>
  322. </project>