pom.xml 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  2. <modelVersion>4.0.0</modelVersion>
  3. <parent>
  4. <groupId>org.springframework.boot</groupId>
  5. <artifactId>spring-boot-starter-parent</artifactId>
  6. <version>4.0.2</version>
  7. <relativePath/> <!-- lookup parent from repository -->
  8. </parent>
  9. <groupId>es.uv.saic.shared</groupId>
  10. <artifactId>UV_SAIC_SHARED</artifactId>
  11. <version>0.0.1-SNAPSHOT</version>
  12. <name>UV_SAIC_SHARED</name>
  13. <description>UV_SAIC_SHARED</description>
  14. <properties>
  15. <java.version>21</java.version>
  16. <maven.compiler.source>${java.version}</maven.compiler.source>
  17. <maven.compiler.target>${java.version}</maven.compiler.target>
  18. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  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.cloud</groupId>
  40. <artifactId>spring-cloud-starter-openfeign</artifactId>
  41. </dependency>
  42. <dependency>
  43. <groupId>org.springframework.boot</groupId>
  44. <artifactId>spring-boot-starter-data-jpa</artifactId>
  45. </dependency>
  46. <dependency>
  47. <groupId>fr.opensagres.xdocreport</groupId>
  48. <artifactId>fr.opensagres.xdocreport.core</artifactId>
  49. <version>2.0.4</version>
  50. </dependency>
  51. </dependencies>
  52. </project>