pom.xml 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208
  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. <maven.compiler.release>21</maven.compiler.release>
  19. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  20. <spring-cloud.version>2025.1.0</spring-cloud.version>
  21. </properties>
  22. <dependencyManagement>
  23. <dependencies>
  24. <dependency>
  25. <groupId>org.springframework.cloud</groupId>
  26. <artifactId>spring-cloud-dependencies</artifactId>
  27. <version>${spring-cloud.version}</version>
  28. <type>pom</type>
  29. <scope>import</scope>
  30. </dependency>
  31. </dependencies>
  32. </dependencyManagement>
  33. <dependencies>
  34. <dependency>
  35. <groupId>org.springframework.boot</groupId>
  36. <artifactId>spring-boot-starter-web</artifactId>
  37. </dependency>
  38. <dependency>
  39. <groupId>org.springframework.boot</groupId>
  40. <artifactId>spring-boot-devtools</artifactId>
  41. <scope>runtime</scope>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.springframework.boot</groupId>
  45. <artifactId>spring-boot-starter-test</artifactId>
  46. <scope>test</scope>
  47. </dependency>
  48. <dependency>
  49. <groupId>org.springframework.boot</groupId>
  50. <artifactId>spring-boot-starter-actuator</artifactId>
  51. </dependency>
  52. <dependency>
  53. <groupId>io.micrometer</groupId>
  54. <artifactId>micrometer-registry-prometheus</artifactId>
  55. </dependency>
  56. <!--<dependency>
  57. <groupId>org.springframework.boot</groupId>
  58. <artifactId>spring-boot-starter-thymeleaf</artifactId>
  59. </dependency>-->
  60. <dependency>
  61. <groupId>org.springframework.boot</groupId>
  62. <artifactId>spring-boot-properties-migrator</artifactId>
  63. <scope>runtime</scope>
  64. </dependency>
  65. <!--
  66. <dependency>
  67. <groupId>nz.net.ultraq.thymeleaf</groupId>
  68. <artifactId>thymeleaf-layout-dialect</artifactId>
  69. </dependency>
  70. <dependency>
  71. <groupId>org.thymeleaf.extras</groupId>
  72. <artifactId>thymeleaf-extras-springsecurity6</artifactId>
  73. </dependency>
  74. -->
  75. <dependency>
  76. <groupId>org.springframework.boot</groupId>
  77. <artifactId>spring-boot-starter-security</artifactId>
  78. </dependency>
  79. <dependency>
  80. <groupId>org.springframework.security</groupId>
  81. <artifactId>spring-security-ldap</artifactId>
  82. </dependency>
  83. <dependency>
  84. <groupId>org.postgresql</groupId>
  85. <artifactId>postgresql</artifactId>
  86. <scope>runtime</scope>
  87. </dependency>
  88. <dependency>
  89. <groupId>org.springframework.boot</groupId>
  90. <artifactId>spring-boot-starter-data-jpa</artifactId>
  91. </dependency>
  92. <dependency>
  93. <groupId>org.springframework.boot</groupId>
  94. <artifactId>spring-boot-starter-mail</artifactId>
  95. </dependency>
  96. <dependency>
  97. <groupId>org.springframework.boot</groupId>
  98. <artifactId>spring-boot-configuration-processor</artifactId>
  99. <optional>true</optional>
  100. </dependency>
  101. <dependency>
  102. <groupId>junit</groupId>
  103. <artifactId>junit</artifactId>
  104. <scope>test</scope>
  105. </dependency>
  106. <dependency>
  107. <groupId>fr.opensagres.xdocreport</groupId>
  108. <artifactId>fr.opensagres.xdocreport.document.docx</artifactId>
  109. <version>2.0.0</version>
  110. </dependency>
  111. <dependency>
  112. <groupId>fr.opensagres.xdocreport</groupId>
  113. <artifactId>fr.opensagres.xdocreport.template.velocity</artifactId>
  114. <version>2.0.0</version>
  115. </dependency>
  116. <dependency>
  117. <groupId>com.mysql</groupId>
  118. <artifactId>mysql-connector-j</artifactId>
  119. </dependency>
  120. <dependency>
  121. <groupId>org.jsoup</groupId>
  122. <artifactId>jsoup</artifactId>
  123. <version>1.15.3</version>
  124. </dependency>
  125. <dependency>
  126. <groupId>org.apache.commons</groupId>
  127. <artifactId>commons-csv</artifactId>
  128. <version>1.11.0</version>
  129. </dependency>
  130. <dependency>
  131. <groupId>org.apache.commons</groupId>
  132. <artifactId>commons-io</artifactId>
  133. <version>1.3.2</version>
  134. </dependency>
  135. <dependency>
  136. <groupId>commons-io</groupId>
  137. <artifactId>commons-io</artifactId>
  138. <version>2.16.1</version>
  139. </dependency>
  140. <dependency>
  141. <groupId>org.springframework.cloud</groupId>
  142. <artifactId>spring-cloud-starter-openfeign</artifactId>
  143. </dependency>
  144. <dependency>
  145. <groupId>org.springframework.cloud</groupId>
  146. <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
  147. </dependency>
  148. <!--
  149. <dependency>
  150. <groupId>org.jacoco</groupId>
  151. <artifactId>jacoco-maven-plugin</artifactId>
  152. <version>0.8.12</version>
  153. </dependency>
  154. -->
  155. <dependency>
  156. <groupId>es.uv.saic.shared</groupId>
  157. <artifactId>UV_SAIC_SHARED</artifactId>
  158. <version>0.0.1-SNAPSHOT</version>
  159. </dependency>
  160. </dependencies>
  161. <build>
  162. <finalName>uv_saic_core</finalName>
  163. <resources>
  164. <resource>
  165. <directory>src/main/resources</directory>
  166. <filtering>true</filtering>
  167. </resource>
  168. </resources>
  169. <plugins>
  170. <plugin>
  171. <groupId>org.springframework.boot</groupId>
  172. <artifactId>spring-boot-maven-plugin</artifactId>
  173. <configuration>
  174. <parameters>true</parameters>
  175. </configuration>
  176. </plugin>
  177. <plugin>
  178. <groupId>org.graalvm.buildtools</groupId>
  179. <artifactId>native-maven-plugin</artifactId>
  180. <configuration>
  181. <imageName>uv_saic_core</imageName>
  182. <buildArgs>
  183. <buildArg>--no-fallback</buildArg>
  184. </buildArgs>
  185. </configuration>
  186. </plugin>
  187. </plugins>
  188. </build>
  189. </project>