pom.xml 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. <project xmlns="http://maven.apache.org/POM/4.0.0"
  2. 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>sicura.web</groupId>
  6. <artifactId>sicura.web</artifactId>
  7. <version>1.7.9.2</version>
  8. <packaging>war</packaging>
  9. <build>
  10. <sourceDirectory>src</sourceDirectory>
  11. <finalName>sicura</finalName>
  12. <plugins>
  13. <plugin>
  14. <artifactId>maven-compiler-plugin</artifactId>
  15. <version>3.6.1</version>
  16. <configuration>
  17. <source>1.8</source>
  18. <target>1.8</target>
  19. </configuration>
  20. </plugin>
  21. <plugin>
  22. <artifactId>maven-war-plugin</artifactId>
  23. <version>3.0.0</version>
  24. <configuration>
  25. <warSourceDirectory>WebContent</warSourceDirectory>
  26. </configuration>
  27. </plugin>
  28. </plugins>
  29. </build>
  30. <parent>
  31. <groupId>web-project</groupId>
  32. <artifactId>web-project</artifactId>
  33. <version>0.0.1-SNAPSHOT</version>
  34. </parent>
  35. <dependencies>
  36. <dependency>
  37. <groupId>sicura.entities</groupId>
  38. <artifactId>sicura.entities</artifactId>
  39. <version>0.0.1-SNAPSHOT</version>
  40. </dependency>
  41. <dependency>
  42. <groupId>sicura.business</groupId>
  43. <artifactId>sicura.business</artifactId>
  44. <version>0.0.1-SNAPSHOT</version>
  45. </dependency>
  46. <dependency>
  47. <groupId>web.common</groupId>
  48. <artifactId>web.common</artifactId>
  49. <version>0.0.1-SNAPSHOT</version>
  50. </dependency>
  51. <dependency>
  52. <groupId>javax.servlet</groupId>
  53. <artifactId>servlet-api</artifactId>
  54. <version>2.4</version>
  55. <scope>provided</scope>
  56. </dependency>
  57. <!-- https://mvnrepository.com/artifact/net.sourceforge.jtds/jtds -->
  58. <dependency>
  59. <groupId>net.sourceforge.jtds</groupId>
  60. <artifactId>jtds</artifactId>
  61. <version>1.2.7</version>
  62. </dependency>
  63. <!-- https://mvnrepository.com/artifact/net.sf.jasperreports/jasperreports -->
  64. <!--
  65. <dependency>
  66. <groupId>net.sf.jasperreports</groupId>
  67. <artifactId>jasperreports</artifactId>
  68. <version>6.4.3</version>
  69. </dependency>
  70. -->
  71. <!-- https://mvnrepository.com/artifact/net.sf.jasperreports/jasperreports-fonts -->
  72. <!--
  73. <dependency>
  74. <groupId>net.sf.jasperreports</groupId>
  75. <artifactId>jasperreports-fonts</artifactId>
  76. <version>6.0.0</version>
  77. </dependency>
  78. -->
  79. <!-- https://mvnrepository.com/artifact/stax/stax-api -->
  80. <dependency>
  81. <groupId>stax</groupId>
  82. <artifactId>stax-api</artifactId>
  83. <version>1.0.1</version>
  84. <scope>provided</scope>
  85. </dependency>
  86. <!-- https://mvnrepository.com/artifact/stax/stax -->
  87. <dependency>
  88. <groupId>stax</groupId>
  89. <artifactId>stax</artifactId>
  90. <version>1.2.0</version>
  91. <scope>provided</scope>
  92. </dependency>
  93. <!-- https://mvnrepository.com/artifact/javax.xml.stream/stax-api -->
  94. <dependency>
  95. <groupId>javax.xml.stream</groupId>
  96. <artifactId>stax-api</artifactId>
  97. <version>1.0-2</version>
  98. <scope>provided</scope>
  99. </dependency>
  100. <!-- https://mvnrepository.com/artifact/net.sf.jasperreports/jasperreports -->
  101. <dependency>
  102. <groupId>net.sf.jasperreports</groupId>
  103. <artifactId>jasperreports</artifactId>
  104. <version>6.13.0</version>
  105. </dependency>
  106. <!-- https://mvnrepository.com/artifact/net.sf.jasperreports/jasperreports-functions -->
  107. <dependency>
  108. <groupId>net.sf.jasperreports</groupId>
  109. <artifactId>jasperreports-functions</artifactId>
  110. <version>6.13.0</version>
  111. </dependency>
  112. <!-- https://mvnrepository.com/artifact/net.sf.jasperreports/jasperreports-fonts -->
  113. <dependency>
  114. <groupId>net.sf.jasperreports</groupId>
  115. <artifactId>jasperreports-fonts</artifactId>
  116. <version>6.13.0</version>
  117. </dependency>
  118. </dependencies>
  119. </project>