pom.xml 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185
  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.thymeleaf.extras</groupId>
  62. <artifactId>thymeleaf-extras-springsecurity6</artifactId>
  63. </dependency>
  64. <dependency>
  65. <groupId>org.springframework.boot</groupId>
  66. <artifactId>spring-boot-starter-security</artifactId>
  67. </dependency>
  68. <dependency>
  69. <groupId>org.springframework.security</groupId>
  70. <artifactId>spring-security-ldap</artifactId>
  71. </dependency>
  72. <dependency>
  73. <groupId>org.postgresql</groupId>
  74. <artifactId>postgresql</artifactId>
  75. <scope>runtime</scope>
  76. </dependency>
  77. <dependency>
  78. <groupId>org.springframework.boot</groupId>
  79. <artifactId>spring-boot-starter-data-jpa</artifactId>
  80. </dependency>
  81. <dependency>
  82. <groupId>org.springframework.boot</groupId>
  83. <artifactId>spring-boot-starter-mail</artifactId>
  84. </dependency>
  85. <dependency>
  86. <groupId>org.springframework.boot</groupId>
  87. <artifactId>spring-boot-configuration-processor</artifactId>
  88. <optional>true</optional>
  89. </dependency>
  90. <dependency>
  91. <groupId>junit</groupId>
  92. <artifactId>junit</artifactId>
  93. <scope>test</scope>
  94. </dependency>
  95. <dependency>
  96. <groupId>com.mysql</groupId>
  97. <artifactId>mysql-connector-j</artifactId>
  98. </dependency>
  99. <dependency>
  100. <groupId>org.jsoup</groupId>
  101. <artifactId>jsoup</artifactId>
  102. <version>1.15.3</version>
  103. </dependency>
  104. <dependency>
  105. <groupId>org.apache.commons</groupId>
  106. <artifactId>commons-csv</artifactId>
  107. <version>1.11.0</version>
  108. </dependency>
  109. <dependency>
  110. <groupId>org.apache.commons</groupId>
  111. <artifactId>commons-io</artifactId>
  112. <version>1.3.2</version>
  113. </dependency>
  114. <dependency>
  115. <groupId>commons-io</groupId>
  116. <artifactId>commons-io</artifactId>
  117. <version>2.16.1</version>
  118. </dependency>
  119. <dependency>
  120. <groupId>org.springframework.cloud</groupId>
  121. <artifactId>spring-cloud-starter-openfeign</artifactId>
  122. </dependency>
  123. <dependency>
  124. <groupId>org.springframework.cloud</groupId>
  125. <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
  126. </dependency>
  127. <!--
  128. <dependency>
  129. <groupId>org.jacoco</groupId>
  130. <artifactId>jacoco-maven-plugin</artifactId>
  131. <version>0.8.12</version>
  132. </dependency>
  133. -->
  134. <dependency>
  135. <groupId>es.uv.saic.shared</groupId>
  136. <artifactId>UV_SAIC_SHARED</artifactId>
  137. <version>0.0.1-SNAPSHOT</version>
  138. </dependency>
  139. </dependencies>
  140. <build>
  141. <finalName>uv_saic_data</finalName>
  142. <resources>
  143. <resource>
  144. <directory>src/main/resources</directory>
  145. <filtering>true</filtering>
  146. </resource>
  147. </resources>
  148. <plugins>
  149. <plugin>
  150. <groupId>org.springframework.boot</groupId>
  151. <artifactId>spring-boot-maven-plugin</artifactId>
  152. <configuration>
  153. <parameters>true</parameters>
  154. </configuration>
  155. </plugin>
  156. <plugin>
  157. <groupId>org.graalvm.buildtools</groupId>
  158. <artifactId>native-maven-plugin</artifactId>
  159. <configuration>
  160. <imageName>uv_saic_data</imageName>
  161. <buildArgs>
  162. <buildArg>--no-fallback</buildArg>
  163. </buildArgs>
  164. </configuration>
  165. </plugin>
  166. </plugins>
  167. </build>
  168. </project>