Common utilities
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

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