Javicle - a JSON Video Composition Language
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

179 lines
6.8 KiB

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. (c) Copyright 2020 Jonathan Cobb
  4. javicle 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. <groupId>org.cobbzilla</groupId>
  9. <artifactId>javicle</artifactId>
  10. <name>javicle</name>
  11. <version>1.0.0-SNAPSHOT</version>
  12. <packaging>jar</packaging>
  13. <licenses>
  14. <license>
  15. <name>The Apache Software License, Version 2.0</name>
  16. <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
  17. <distribution>repo</distribution>
  18. </license>
  19. </licenses>
  20. <repositories>
  21. <repository>
  22. <id>jitpack.io</id>
  23. <url>https://jitpack.io</url>
  24. </repository>
  25. </repositories>
  26. <properties>
  27. <args4j.version>2.0.23</args4j.version>
  28. <graalvm.version>19.2.0</graalvm.version>
  29. <jackson.version>2.11.2</jackson.version>
  30. <commons-exec.version>1.3</commons-exec.version>
  31. <httpcore.version>4.4.13</httpcore.version>
  32. <httpclient.version>4.5.13</httpclient.version>
  33. <httpmime.version>4.5.13</httpmime.version>
  34. <joda-time.version>2.10.8</joda-time.version>
  35. <slf4j.version>1.7.30</slf4j.version>
  36. <logback.version>1.2.3</logback.version>
  37. <handlebars.version>4.2.0</handlebars.version>
  38. <junit.version>4.13.1</junit.version>
  39. <cglib.version>3.3.0</cglib.version>
  40. </properties>
  41. <profiles>
  42. <profile>
  43. <id>uberjar</id>
  44. <build>
  45. <plugins>
  46. <plugin>
  47. <groupId>org.apache.maven.plugins</groupId>
  48. <artifactId>maven-shade-plugin</artifactId>
  49. <version>2.1</version>
  50. <configuration>
  51. <finalName>jvcl-${project.version}-prod</finalName>
  52. </configuration>
  53. <executions>
  54. <execution>
  55. <phase>package</phase>
  56. <goals>
  57. <goal>shade</goal>
  58. </goals>
  59. <configuration>
  60. <transformers>
  61. <transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
  62. <mainClass>jvcl.main.Jvcl</mainClass>
  63. </transformer>
  64. </transformers>
  65. <!-- Exclude signed jars to avoid errors
  66. see: http://stackoverflow.com/a/6743609/1251543
  67. -->
  68. <filters>
  69. <filter>
  70. <artifact>*:*</artifact>
  71. <excludes>
  72. <exclude>META-INF/*.SF</exclude>
  73. <exclude>META-INF/*.DSA</exclude>
  74. <exclude>META-INF/*.RSA</exclude>
  75. </excludes>
  76. </filter>
  77. </filters>
  78. </configuration>
  79. </execution>
  80. </executions>
  81. </plugin>
  82. </plugins>
  83. </build>
  84. </profile>
  85. </profiles>
  86. <dependencies>
  87. <dependency>
  88. <groupId>org.cobbzilla</groupId>
  89. <artifactId>cobbzilla-utils</artifactId>
  90. <version>2.0.1</version>
  91. <exclusions>
  92. <exclusion>
  93. <groupId>org.apache.poi</groupId>
  94. <artifactId>*</artifactId>
  95. </exclusion>
  96. <exclusion>
  97. <groupId>fr.opensagres.xdocreport</groupId>
  98. <artifactId>*</artifactId>
  99. </exclusion>
  100. <exclusion>
  101. <groupId>com.codeborne</groupId>
  102. <artifactId>*</artifactId>
  103. </exclusion>
  104. <exclusion>
  105. <groupId>jtidy</groupId>
  106. <artifactId>*</artifactId>
  107. </exclusion>
  108. <exclusion>
  109. <groupId>xalan</groupId>
  110. <artifactId>*</artifactId>
  111. </exclusion>
  112. <exclusion>
  113. <groupId>net.sf.saxon</groupId>
  114. <artifactId>*</artifactId>
  115. </exclusion>
  116. <exclusion>
  117. <groupId>org.apache.ant</groupId>
  118. <artifactId>*</artifactId>
  119. </exclusion>
  120. <exclusion>
  121. <groupId>com.opencsv</groupId>
  122. <artifactId>*</artifactId>
  123. </exclusion>
  124. <exclusion>
  125. <groupId>org.quartz-scheduler</groupId>
  126. <artifactId>*</artifactId>
  127. </exclusion>
  128. <exclusion>
  129. <groupId>org.apache.pdfbox</groupId>
  130. <artifactId>*</artifactId>
  131. </exclusion>
  132. <exclusion>
  133. <groupId>org.atteo</groupId>
  134. <artifactId>*</artifactId>
  135. </exclusion>
  136. <exclusion>
  137. <groupId>io.github.bonigarcia</groupId>
  138. <artifactId>*</artifactId>
  139. </exclusion>
  140. </exclusions>
  141. </dependency>
  142. <dependency>
  143. <groupId>cglib</groupId>
  144. <artifactId>cglib</artifactId>
  145. <version>${cglib.version}</version>
  146. </dependency>
  147. <dependency>
  148. <groupId>junit</groupId>
  149. <artifactId>junit</artifactId>
  150. <version>${junit.version}</version>
  151. </dependency>
  152. </dependencies>
  153. <build>
  154. <plugins>
  155. <plugin>
  156. <groupId>org.apache.maven.plugins</groupId>
  157. <artifactId>maven-compiler-plugin</artifactId>
  158. <version>2.3.2</version>
  159. <configuration>
  160. <source>11</source>
  161. <target>11</target>
  162. <showWarnings>true</showWarnings>
  163. </configuration>
  164. </plugin>
  165. </plugins>
  166. </build>
  167. </project>