pom.xml 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193
  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>4.0.2</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>21</java.version>
  18. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  19. <spring-cloud.version>2025.1.0</spring-cloud.version>
  20. </properties>
  21. <dependencyManagement>
  22. <dependencies>
  23. <dependency>
  24. <groupId>org.springframework.cloud</groupId>
  25. <artifactId>spring-cloud-dependencies</artifactId>
  26. <version>${spring-cloud.version}</version>
  27. <type>pom</type>
  28. <scope>import</scope>
  29. </dependency>
  30. </dependencies>
  31. </dependencyManagement>
  32. <dependencies>
  33. <dependency>
  34. <groupId>org.springframework.boot</groupId>
  35. <artifactId>spring-boot-starter-web</artifactId>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.springframework.boot</groupId>
  39. <artifactId>spring-boot-devtools</artifactId>
  40. <scope>runtime</scope>
  41. </dependency>
  42. <dependency>
  43. <groupId>org.springframework.boot</groupId>
  44. <artifactId>spring-boot-starter-test</artifactId>
  45. <scope>test</scope>
  46. </dependency>
  47. <dependency>
  48. <groupId>org.springframework.boot</groupId>
  49. <artifactId>spring-boot-starter-actuator</artifactId>
  50. </dependency>
  51. <dependency>
  52. <groupId>io.micrometer</groupId>
  53. <artifactId>micrometer-registry-prometheus</artifactId>
  54. </dependency>
  55. <dependency>
  56. <groupId>org.springframework.boot</groupId>
  57. <artifactId>spring-boot-properties-migrator</artifactId>
  58. <scope>runtime</scope>
  59. </dependency>
  60. <dependency>
  61. <groupId>org.springframework.boot</groupId>
  62. <artifactId>spring-boot-starter-security</artifactId>
  63. </dependency>
  64. <dependency>
  65. <groupId>org.springframework.security</groupId>
  66. <artifactId>spring-security-ldap</artifactId>
  67. </dependency>
  68. <dependency>
  69. <groupId>org.postgresql</groupId>
  70. <artifactId>postgresql</artifactId>
  71. <scope>runtime</scope>
  72. </dependency>
  73. <dependency>
  74. <groupId>org.springframework.boot</groupId>
  75. <artifactId>spring-boot-starter-data-jpa</artifactId>
  76. </dependency>
  77. <dependency>
  78. <groupId>org.springframework.boot</groupId>
  79. <artifactId>spring-boot-starter-mail</artifactId>
  80. </dependency>
  81. <dependency>
  82. <groupId>org.springframework.boot</groupId>
  83. <artifactId>spring-boot-configuration-processor</artifactId>
  84. <optional>true</optional>
  85. </dependency>
  86. <dependency>
  87. <groupId>junit</groupId>
  88. <artifactId>junit</artifactId>
  89. <scope>test</scope>
  90. </dependency>
  91. <dependency>
  92. <groupId>fr.opensagres.xdocreport</groupId>
  93. <artifactId>fr.opensagres.xdocreport.document.docx</artifactId>
  94. <version>2.0.0</version>
  95. </dependency>
  96. <dependency>
  97. <groupId>fr.opensagres.xdocreport</groupId>
  98. <artifactId>fr.opensagres.xdocreport.template.velocity</artifactId>
  99. <version>2.0.0</version>
  100. </dependency>
  101. <dependency>
  102. <groupId>com.mysql</groupId>
  103. <artifactId>mysql-connector-j</artifactId>
  104. </dependency>
  105. <dependency>
  106. <groupId>org.jsoup</groupId>
  107. <artifactId>jsoup</artifactId>
  108. <version>1.15.3</version>
  109. </dependency>
  110. <dependency>
  111. <groupId>org.apache.commons</groupId>
  112. <artifactId>commons-csv</artifactId>
  113. <version>1.11.0</version>
  114. </dependency>
  115. <dependency>
  116. <groupId>org.apache.commons</groupId>
  117. <artifactId>commons-io</artifactId>
  118. <version>1.3.2</version>
  119. </dependency>
  120. <dependency>
  121. <groupId>commons-io</groupId>
  122. <artifactId>commons-io</artifactId>
  123. <version>2.16.1</version>
  124. </dependency>
  125. <dependency>
  126. <groupId>org.springframework.cloud</groupId>
  127. <artifactId>spring-cloud-starter-openfeign</artifactId>
  128. </dependency>
  129. <dependency>
  130. <groupId>org.springframework.cloud</groupId>
  131. <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
  132. </dependency>
  133. <!--
  134. <dependency>
  135. <groupId>org.jacoco</groupId>
  136. <artifactId>jacoco-maven-plugin</artifactId>
  137. <version>0.8.12</version>
  138. </dependency>
  139. -->
  140. </dependencies>
  141. <build>
  142. <finalName>uv_saic_docs</finalName>
  143. <plugins>
  144. <plugin>
  145. <groupId>org.springframework.boot</groupId>
  146. <artifactId>spring-boot-maven-plugin</artifactId>
  147. <configuration>
  148. <parameters>true</parameters>
  149. </configuration>
  150. </plugin>
  151. <!--
  152. <plugin>
  153. <groupId>org.jacoco</groupId>
  154. <artifactId>jacoco-maven-plugin</artifactId>
  155. <version>0.8.12</version>
  156. <executions>
  157. <execution>
  158. <id>jacoco-initialize</id>
  159. <goals>
  160. <goal>prepare-agent</goal>
  161. </goals>
  162. </execution>
  163. <execution>
  164. <id>jacoco-site</id>
  165. <phase>package</phase>
  166. <goals>
  167. <goal>report</goal>
  168. </goals>
  169. </execution>
  170. </executions>
  171. </plugin>
  172. -->
  173. </plugins>
  174. </build>
  175. </project>