Common utilities
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
 
 
 
 

376 líneas
14 KiB

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. (c) Copyright 2013-2015 Jonathan Cobb
  4. cobbzilla-utils is available under the Apache License, version 2: http://www.apache.org/licenses/LICENSE-2.0.html
  5. -->
  6. <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">
  7. <modelVersion>4.0.0</modelVersion>
  8. <parent>
  9. <groupId>org.cobbzilla</groupId>
  10. <artifactId>cobbzilla-parent</artifactId>
  11. <version>2.0.1</version>
  12. </parent>
  13. <artifactId>cobbzilla-utils</artifactId>
  14. <name>cobbzilla-utils</name>
  15. <version>2.0.1</version>
  16. <packaging>jar</packaging>
  17. <repositories>
  18. <repository>
  19. <id>bintray-nitram509-jbrotli</id>
  20. <name>bintray</name>
  21. <url>http://dl.bintray.com/nitram509/jbrotli</url>
  22. </repository>
  23. </repositories>
  24. <licenses>
  25. <license>
  26. <name>The Apache Software License, Version 2.0</name>
  27. <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
  28. <distribution>repo</distribution>
  29. </license>
  30. </licenses>
  31. <profiles>
  32. <profile>
  33. <id>uberjar</id>
  34. <build>
  35. <plugins>
  36. <plugin>
  37. <groupId>org.apache.maven.plugins</groupId>
  38. <artifactId>maven-shade-plugin</artifactId>
  39. <version>2.1</version>
  40. <configuration>
  41. <finalName>zilla-utils</finalName>
  42. </configuration>
  43. <executions>
  44. <execution>
  45. <phase>package</phase>
  46. <goals>
  47. <goal>shade</goal>
  48. </goals>
  49. <configuration>
  50. <transformers>
  51. <transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
  52. <mainClass>org.cobbzilla.util.main.IndexMain</mainClass>
  53. </transformer>
  54. </transformers>
  55. <!-- Exclude signed jars to avoid errors
  56. see: http://stackoverflow.com/a/6743609/1251543
  57. -->
  58. <filters>
  59. <filter>
  60. <artifact>*:*</artifact>
  61. <excludes>
  62. <exclude>META-INF/*.SF</exclude>
  63. <exclude>META-INF/*.DSA</exclude>
  64. <exclude>META-INF/*.RSA</exclude>
  65. </excludes>
  66. </filter>
  67. </filters>
  68. </configuration>
  69. </execution>
  70. </executions>
  71. </plugin>
  72. </plugins>
  73. </build>
  74. </profile>
  75. </profiles>
  76. <dependencies>
  77. <!-- https://mvnrepository.com/artifact/org.graalvm.js/js -->
  78. <dependency>
  79. <groupId>org.graalvm.js</groupId>
  80. <artifactId>js</artifactId>
  81. <version>${graalvm.version}</version>
  82. </dependency>
  83. <!-- https://mvnrepository.com/artifact/org.graalvm.js/js-scriptengine -->
  84. <dependency>
  85. <groupId>org.graalvm.js</groupId>
  86. <artifactId>js-scriptengine</artifactId>
  87. <version>${graalvm.version}</version>
  88. </dependency>
  89. <!-- https://mvnrepository.com/artifact/org.graalvm.truffle/truffle-api -->
  90. <dependency>
  91. <groupId>org.graalvm.truffle</groupId>
  92. <artifactId>truffle-api</artifactId>
  93. <version>${graalvm.version}</version>
  94. </dependency>
  95. <dependency>
  96. <groupId>com.fasterxml.jackson.core</groupId>
  97. <artifactId>jackson-core</artifactId>
  98. <version>${jackson.version}</version>
  99. </dependency>
  100. <dependency>
  101. <groupId>com.fasterxml.jackson.core</groupId>
  102. <artifactId>jackson-annotations</artifactId>
  103. <version>${jackson.version}</version>
  104. </dependency>
  105. <dependency>
  106. <groupId>com.fasterxml.jackson.core</groupId>
  107. <artifactId>jackson-databind</artifactId>
  108. <version>${jackson.version}</version>
  109. </dependency>
  110. <dependency>
  111. <groupId>com.fasterxml.jackson.dataformat</groupId>
  112. <artifactId>jackson-dataformat-xml</artifactId>
  113. <version>${jackson.version}</version>
  114. </dependency>
  115. <dependency>
  116. <groupId>commons-beanutils</groupId>
  117. <artifactId>commons-beanutils</artifactId>
  118. <version>${commons-beanutils.version}</version>
  119. </dependency>
  120. <dependency>
  121. <groupId>org.apache.commons</groupId>
  122. <artifactId>commons-lang3</artifactId>
  123. <version>${commons-lang3.version}</version>
  124. </dependency>
  125. <!-- https://mvnrepository.com/artifact/org.apache.poi/poi-ooxml -->
  126. <dependency>
  127. <groupId>org.apache.poi</groupId>
  128. <artifactId>poi-ooxml</artifactId>
  129. <version>4.1.2</version>
  130. </dependency>
  131. <dependency>
  132. <groupId>org.apache.ant</groupId>
  133. <artifactId>ant</artifactId>
  134. <version>${ant.version}</version>
  135. </dependency>
  136. <dependency>
  137. <groupId>commons-io</groupId>
  138. <artifactId>commons-io</artifactId>
  139. <version>${commons-io.version}</version>
  140. </dependency>
  141. <dependency>
  142. <groupId>org.apache.commons</groupId>
  143. <artifactId>commons-compress</artifactId>
  144. <version>${commons-compress.version}</version>
  145. </dependency>
  146. <dependency>
  147. <groupId>com.nixxcode.jvmbrotli</groupId>
  148. <artifactId>jvmbrotli</artifactId>
  149. <version>0.2.0</version>
  150. </dependency>
  151. <dependency>
  152. <groupId>com.nixxcode.jvmbrotli</groupId>
  153. <artifactId>jvmbrotli-linux-x86-amd64</artifactId>
  154. <version>0.2.0</version>
  155. </dependency>
  156. <dependency>
  157. <groupId>org.apache.commons</groupId>
  158. <artifactId>commons-exec</artifactId>
  159. <version>${commons-exec.version}</version>
  160. </dependency>
  161. <dependency>
  162. <groupId>org.apache.httpcomponents</groupId>
  163. <artifactId>httpcore</artifactId>
  164. <version>${httpcore.version}</version>
  165. </dependency>
  166. <dependency>
  167. <groupId>org.apache.httpcomponents</groupId>
  168. <artifactId>httpclient</artifactId>
  169. <version>${httpclient.version}</version>
  170. </dependency>
  171. <dependency>
  172. <groupId>org.apache.httpcomponents</groupId>
  173. <artifactId>httpmime</artifactId>
  174. <version>${httpmime.version}</version>
  175. </dependency>
  176. <dependency>
  177. <groupId>joda-time</groupId>
  178. <artifactId>joda-time</artifactId>
  179. <version>${joda-time.version}</version>
  180. </dependency>
  181. <dependency>
  182. <groupId>com.github.jknack</groupId>
  183. <artifactId>handlebars</artifactId>
  184. <version>${handlebars.version}</version>
  185. </dependency>
  186. <dependency>
  187. <groupId>com.github.jknack</groupId>
  188. <artifactId>handlebars-jackson2</artifactId>
  189. <version>${handlebars.version}</version>
  190. </dependency>
  191. <dependency>
  192. <groupId>org.slf4j</groupId>
  193. <artifactId>slf4j-api</artifactId>
  194. <version>${slf4j.version}</version>
  195. </dependency>
  196. <dependency>
  197. <groupId>org.slf4j</groupId>
  198. <artifactId>jul-to-slf4j</artifactId>
  199. <version>${slf4j.version}</version>
  200. </dependency>
  201. <dependency>
  202. <groupId>ch.qos.logback</groupId>
  203. <artifactId>logback-classic</artifactId>
  204. <version>${logback.version}</version>
  205. </dependency>
  206. <dependency>
  207. <groupId>org.quartz-scheduler</groupId>
  208. <artifactId>quartz</artifactId>
  209. <version>${quartz.version}</version>
  210. <exclusions>
  211. <exclusion>
  212. <groupId>c3p0</groupId>
  213. <artifactId>c3p0</artifactId>
  214. </exclusion>
  215. </exclusions>
  216. </dependency>
  217. <dependency>
  218. <groupId>org.quartz-scheduler</groupId>
  219. <artifactId>quartz-jobs</artifactId>
  220. <version>${quartz.version}</version>
  221. </dependency>
  222. <!-- auto-generate java boilerplate -->
  223. <dependency>
  224. <groupId>org.projectlombok</groupId>
  225. <artifactId>lombok</artifactId>
  226. <version>${lombok.version}</version>
  227. <scope>compile</scope>
  228. </dependency>
  229. <!--<dependency>-->
  230. <!--<groupId>org.projectlombok</groupId>-->
  231. <!--<artifactId>lombok-maven-plugin</artifactId>-->
  232. <!--<version>1.18.0.0</version>-->
  233. <!--&lt;!&ndash;<scope>compile</scope>&ndash;&gt;-->
  234. <!--</dependency>-->
  235. <!-- HTML/XPath utilities -->
  236. <dependency>
  237. <groupId>jtidy</groupId>
  238. <artifactId>jtidy</artifactId>
  239. <version>${jtidy.version}</version>
  240. </dependency>
  241. <dependency>
  242. <groupId>xalan</groupId>
  243. <artifactId>xalan</artifactId>
  244. <version>${xalan.version}</version>
  245. </dependency>
  246. <dependency>
  247. <groupId>net.sf.saxon</groupId>
  248. <artifactId>Saxon-HE</artifactId>
  249. <version>9.7.0-10</version>
  250. </dependency>
  251. <dependency>
  252. <groupId>args4j</groupId>
  253. <artifactId>args4j</artifactId>
  254. <version>${args4j.version}</version>
  255. </dependency>
  256. <!-- web/html screenshots -->
  257. <dependency>
  258. <groupId>com.codeborne</groupId>
  259. <artifactId>phantomjsdriver</artifactId>
  260. <!-- upgrading to 1.4.x breaks cglib for some reason -->
  261. <!-- we should switch to headless-chrome, phantomjs has been deprecated -->
  262. <version>1.3.0</version>
  263. </dependency>
  264. <!-- merge word doc templates -->
  265. <dependency>
  266. <groupId>fr.opensagres.xdocreport</groupId>
  267. <artifactId>fr.opensagres.xdocreport.document</artifactId>
  268. <version>${xdocreport.version}</version>
  269. </dependency>
  270. <dependency>
  271. <groupId>fr.opensagres.xdocreport</groupId>
  272. <artifactId>fr.opensagres.xdocreport.template.velocity</artifactId>
  273. <version>${xdocreport.version}</version>
  274. </dependency>
  275. <dependency>
  276. <groupId>fr.opensagres.xdocreport</groupId>
  277. <artifactId>fr.opensagres.xdocreport.document.docx</artifactId>
  278. <version>${xdocreport.version}</version>
  279. </dependency>
  280. <dependency>
  281. <groupId>fr.opensagres.xdocreport</groupId>
  282. <artifactId>fr.opensagres.xdocreport.converter.docx.xwpf</artifactId>
  283. <version>${xdocreport.version}</version>
  284. <exclusions>
  285. <exclusion>
  286. <groupId>fr.opensagres.xdocreport</groupId>
  287. <artifactId>org.apache.poi.xwpf.converter.pdf</artifactId>
  288. </exclusion>
  289. </exclusions>
  290. </dependency>
  291. <dependency>
  292. <groupId>fr.opensagres.xdocreport</groupId>
  293. <artifactId>org.apache.poi.xwpf.converter.pdf.itext5</artifactId>
  294. <version>${xdocreport.version}</version>
  295. </dependency>
  296. <!-- merge PDF templates -->
  297. <dependency>
  298. <groupId>org.apache.pdfbox</groupId>
  299. <artifactId>pdfbox</artifactId>
  300. <version>2.0.16</version>
  301. </dependency>
  302. <!-- merge XML documents -->
  303. <dependency>
  304. <groupId>org.atteo</groupId>
  305. <artifactId>xml-combiner</artifactId>
  306. <version>2.2</version>
  307. </dependency>
  308. <!-- Allows us to embed phantomjs -->
  309. <dependency>
  310. <groupId>io.github.bonigarcia</groupId>
  311. <artifactId>webdrivermanager</artifactId>
  312. <version>2.1.0</version>
  313. </dependency>
  314. <!-- https://mvnrepository.com/artifact/org.bouncycastle/bcprov-jdk15on -->
  315. <dependency>
  316. <groupId>org.bouncycastle</groupId>
  317. <artifactId>bcprov-jdk15on</artifactId>
  318. <version>1.64</version>
  319. </dependency>
  320. <!-- https://mvnrepository.com/artifact/com.github.oshi/oshi-core -->
  321. <dependency>
  322. <groupId>com.github.oshi</groupId>
  323. <artifactId>oshi-core</artifactId>
  324. <version>5.3.4</version>
  325. </dependency>
  326. </dependencies>
  327. <build>
  328. <plugins>
  329. <plugin>
  330. <groupId>org.apache.maven.plugins</groupId>
  331. <artifactId>maven-compiler-plugin</artifactId>
  332. <version>2.3.2</version>
  333. <configuration>
  334. <source>11</source>
  335. <target>11</target>
  336. <showWarnings>true</showWarnings>
  337. </configuration>
  338. </plugin>
  339. </plugins>
  340. </build>
  341. </project>