pom.xml 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183
  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. <parent>
  6. <groupId>org.springframework.boot</groupId>
  7. <artifactId>spring-boot-starter-parent</artifactId>
  8. <version>3.3.0</version>
  9. <relativePath/> <!-- lookup parent from repository -->
  10. </parent>
  11. <groupId>es.uv.saic</groupId>
  12. <artifactId>saic</artifactId>
  13. <version>3.0.0</version>
  14. <name>saic</name>
  15. <description>saic</description>
  16. <properties>
  17. <java.version>17</java.version>
  18. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  19. </properties>
  20. <dependencies>
  21. <dependency>
  22. <groupId>org.springframework.boot</groupId>
  23. <artifactId>spring-boot-starter-web</artifactId>
  24. </dependency>
  25. <dependency>
  26. <groupId>org.springframework.boot</groupId>
  27. <artifactId>spring-boot-devtools</artifactId>
  28. <scope>runtime</scope>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.springframework.boot</groupId>
  32. <artifactId>spring-boot-starter-test</artifactId>
  33. <scope>test</scope>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.springframework.boot</groupId>
  37. <artifactId>spring-boot-starter-actuator</artifactId>
  38. </dependency>
  39. <dependency>
  40. <groupId>de.codecentric</groupId>
  41. <artifactId>spring-boot-admin-starter-client</artifactId>
  42. <version>3.3.0</version>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.springframework.boot</groupId>
  46. <artifactId>spring-boot-starter-thymeleaf</artifactId>
  47. </dependency>
  48. <dependency>
  49. <groupId>org.springframework.boot</groupId>
  50. <artifactId>spring-boot-properties-migrator</artifactId>
  51. <scope>runtime</scope>
  52. </dependency>
  53. <dependency>
  54. <groupId>nz.net.ultraq.thymeleaf</groupId>
  55. <artifactId>thymeleaf-layout-dialect</artifactId>
  56. </dependency>
  57. <dependency>
  58. <groupId>org.thymeleaf.extras</groupId>
  59. <artifactId>thymeleaf-extras-springsecurity6</artifactId>
  60. </dependency>
  61. <dependency>
  62. <groupId>org.springframework.boot</groupId>
  63. <artifactId>spring-boot-starter-security</artifactId>
  64. </dependency>
  65. <dependency>
  66. <groupId>org.springframework.security</groupId>
  67. <artifactId>spring-security-ldap</artifactId>
  68. </dependency>
  69. <dependency>
  70. <groupId>org.postgresql</groupId>
  71. <artifactId>postgresql</artifactId>
  72. <scope>runtime</scope>
  73. </dependency>
  74. <dependency>
  75. <groupId>org.springframework.boot</groupId>
  76. <artifactId>spring-boot-starter-data-jpa</artifactId>
  77. </dependency>
  78. <dependency>
  79. <groupId>org.springframework.boot</groupId>
  80. <artifactId>spring-boot-starter-mail</artifactId>
  81. </dependency>
  82. <dependency>
  83. <groupId>org.springframework.boot</groupId>
  84. <artifactId>spring-boot-configuration-processor</artifactId>
  85. <optional>true</optional>
  86. </dependency>
  87. <dependency>
  88. <groupId>junit</groupId>
  89. <artifactId>junit</artifactId>
  90. <scope>test</scope>
  91. </dependency>
  92. <dependency>
  93. <groupId>fr.opensagres.xdocreport</groupId>
  94. <artifactId>fr.opensagres.xdocreport.document.docx</artifactId>
  95. <version>2.0.0</version>
  96. </dependency>
  97. <dependency>
  98. <groupId>fr.opensagres.xdocreport</groupId>
  99. <artifactId>fr.opensagres.xdocreport.template.velocity</artifactId>
  100. <version>2.0.0</version>
  101. </dependency>
  102. <dependency>
  103. <groupId>com.mysql</groupId>
  104. <artifactId>mysql-connector-j</artifactId>
  105. </dependency>
  106. <dependency>
  107. <groupId>org.jsoup</groupId>
  108. <artifactId>jsoup</artifactId>
  109. <version>1.15.3</version>
  110. </dependency>
  111. <dependency>
  112. <groupId>org.apache.commons</groupId>
  113. <artifactId>commons-csv</artifactId>
  114. <version>1.11.0</version>
  115. </dependency>
  116. <dependency>
  117. <groupId>org.apache.commons</groupId>
  118. <artifactId>commons-io</artifactId>
  119. <version>1.3.2</version>
  120. </dependency>
  121. <dependency>
  122. <groupId>commons-io</groupId>
  123. <artifactId>commons-io</artifactId>
  124. <version>2.16.1</version>
  125. </dependency>
  126. <!--
  127. <dependency>
  128. <groupId>org.jacoco</groupId>
  129. <artifactId>jacoco-maven-plugin</artifactId>
  130. <version>0.8.12</version>
  131. </dependency>
  132. -->
  133. </dependencies>
  134. <build>
  135. <finalName>uv_saic</finalName>
  136. <plugins>
  137. <plugin>
  138. <groupId>org.springframework.boot</groupId>
  139. <artifactId>spring-boot-maven-plugin</artifactId>
  140. <configuration>
  141. <parameters>true</parameters>
  142. </configuration>
  143. </plugin>
  144. <!--
  145. <plugin>
  146. <groupId>org.jacoco</groupId>
  147. <artifactId>jacoco-maven-plugin</artifactId>
  148. <version>0.8.12</version>
  149. <executions>
  150. <execution>
  151. <id>jacoco-initialize</id>
  152. <goals>
  153. <goal>prepare-agent</goal>
  154. </goals>
  155. </execution>
  156. <execution>
  157. <id>jacoco-site</id>
  158. <phase>package</phase>
  159. <goals>
  160. <goal>report</goal>
  161. </goals>
  162. </execution>
  163. </executions>
  164. </plugin>
  165. -->
  166. </plugins>
  167. </build>
  168. </project>