pom.xml 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199
  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/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <groupId>com.marlenlamur-es</groupId>
  6. <artifactId>cosnet</artifactId>
  7. <version>1.0-OP</version>
  8. <packaging>war</packaging>
  9. <name>cosnet</name>
  10. <properties>
  11. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  12. <maven.compiler.source>1.8</maven.compiler.source>
  13. <maven.compiler.target>1.8</maven.compiler.target>
  14. </properties>
  15. <dependencies>
  16. <dependency>
  17. <groupId>org.apache.maven</groupId>
  18. <artifactId>maven-archiver</artifactId>
  19. <version>2.5</version>
  20. </dependency>
  21. <dependency>
  22. <groupId>mysql</groupId>
  23. <artifactId>mysql-connector-java</artifactId>
  24. <version>5.1.48</version>
  25. </dependency>
  26. <dependency>
  27. <groupId>org.eclipse.persistence</groupId>
  28. <artifactId>eclipselink</artifactId>
  29. <version>2.7.6</version>
  30. <scope>provided</scope>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.eclipse.persistence</groupId>
  34. <artifactId>org.eclipse.persistence.jpa.modelgen.processor</artifactId>
  35. <version>2.7.6</version>
  36. <scope>provided</scope>
  37. </dependency>
  38. <dependency>
  39. <groupId>commons-io</groupId>
  40. <artifactId>commons-io</artifactId>
  41. <version>2.2</version>
  42. <type>jar</type>
  43. </dependency>
  44. <dependency>
  45. <groupId>net.sf.barcode4j</groupId>
  46. <artifactId>barcode4j</artifactId>
  47. <version>2.0</version>
  48. </dependency>
  49. <dependency>
  50. <groupId>net.sourceforge.barbecue</groupId>
  51. <artifactId>barbecue</artifactId>
  52. <version>1.5-beta1</version>
  53. </dependency>
  54. <dependency>
  55. <groupId>org.primefaces.extensions</groupId>
  56. <artifactId>primefaces-extensions</artifactId>
  57. <version>6.2.11</version>
  58. </dependency>
  59. <dependency>
  60. <groupId>org.primefaces</groupId>
  61. <artifactId>primefaces</artifactId>
  62. <version>7.0</version>
  63. <type>jar</type>
  64. </dependency>
  65. <dependency>
  66. <groupId>org.apache.tomcat</groupId>
  67. <artifactId>jasper-jdt</artifactId>
  68. <version>6.0.26</version>
  69. </dependency>
  70. <dependency>
  71. <groupId>com.itextpdf</groupId>
  72. <artifactId>itextpdf</artifactId>
  73. <version>5.5.13.3</version>
  74. </dependency>
  75. <dependency>
  76. <groupId>net.sf.jasperreports</groupId>
  77. <artifactId>jasperreports-fonts</artifactId>
  78. <version>6.12.2</version>
  79. </dependency>
  80. <dependency>
  81. <groupId>javax.mail</groupId>
  82. <artifactId>mail</artifactId>
  83. <version>1.4</version>
  84. </dependency>
  85. <dependency>
  86. <groupId>org.apache.commons</groupId>
  87. <artifactId>commons-text</artifactId>
  88. <version>1.8</version>
  89. </dependency>
  90. <dependency>
  91. <groupId>commons-beanutils</groupId>
  92. <artifactId>commons-beanutils</artifactId>
  93. <version>1.9.4</version>
  94. </dependency>
  95. <dependency>
  96. <groupId>org.apache.xmlgraphics</groupId>
  97. <artifactId>batik-bridge</artifactId>
  98. <version>1.9.1</version>
  99. </dependency>
  100. <dependency>
  101. <groupId>javax.faces</groupId>
  102. <artifactId>jsf-api</artifactId>
  103. <version>2.1</version>
  104. <scope>provided</scope>
  105. </dependency>
  106. <dependency>
  107. <groupId>org.omnifaces</groupId>
  108. <artifactId>omnifaces</artifactId>
  109. <version>2.6.9</version>
  110. </dependency>
  111. <dependency>
  112. <groupId>com.google.firebase</groupId>
  113. <artifactId>firebase-admin</artifactId>
  114. <version>5.2.0</version>
  115. </dependency>
  116. <dependency>
  117. <groupId>fish.payara.extras</groupId>
  118. <artifactId>payara-micro</artifactId>
  119. <version>5.181</version>
  120. <type>jar</type>
  121. </dependency>
  122. <dependency>
  123. <groupId>javax</groupId>
  124. <artifactId>javaee-api</artifactId>
  125. <version>7.0</version>
  126. <scope>provided</scope>
  127. </dependency>
  128. <dependency>
  129. <groupId>net.sf.jasperreports</groupId>
  130. <artifactId>jasperreports</artifactId>
  131. <version>5.5.1</version>
  132. <exclusions>
  133. <exclusion>
  134. <groupId>com.lowagie</groupId>
  135. <artifactId>itext</artifactId>
  136. </exclusion>
  137. </exclusions>
  138. </dependency>
  139. <!-- https://mvnrepository.com/artifact/com.lowagie/itext -->
  140. <dependency>
  141. <groupId>com.lowagie</groupId>
  142. <artifactId>itext</artifactId>
  143. <version>2.1.7</version>
  144. </dependency>
  145. </dependencies>
  146. <build>
  147. <finalName>cosnet</finalName>
  148. <pluginManagement><!-- lock down plugins versions to avoid using Maven defaults (may be moved to parent pom) -->
  149. <plugins>
  150. <plugin>
  151. <artifactId>maven-clean-plugin</artifactId>
  152. <version>3.1.0</version>
  153. </plugin>
  154. <!-- see http://maven.apache.org/ref/current/maven-core/default-bindings.html#Plugin_bindings_for_war_packaging -->
  155. <plugin>
  156. <artifactId>maven-resources-plugin</artifactId>
  157. <version>3.0.2</version>
  158. </plugin>
  159. <plugin>
  160. <artifactId>maven-compiler-plugin</artifactId>
  161. <version>3.8.1</version>
  162. </plugin>
  163. <plugin>
  164. <artifactId>maven-surefire-plugin</artifactId>
  165. <version>2.22.1</version>
  166. </plugin>
  167. <plugin>
  168. <artifactId>maven-war-plugin</artifactId>
  169. <version>3.2.2</version>
  170. </plugin>
  171. <plugin>
  172. <artifactId>maven-install-plugin</artifactId>
  173. <version>2.5.2</version>
  174. </plugin>
  175. <plugin>
  176. <artifactId>maven-deploy-plugin</artifactId>
  177. <version>2.8.2</version>
  178. </plugin>
  179. </plugins>
  180. </pluginManagement>
  181. <plugins>
  182. <plugin>
  183. <groupId>org.apache.maven.plugins</groupId>
  184. <artifactId>maven-compiler-plugin</artifactId>
  185. <configuration>
  186. <source>8</source>
  187. <target>8</target>
  188. </configuration>
  189. </plugin>
  190. </plugins>
  191. </build>
  192. </project>