backend: microservices-oriented architecture, clean-architecture design pattern, spring-boot, spring cloud gateway, spring cloud eureka et spring cloud config. - frontend: angular, observer rxjs

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  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 https://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.0.1</version>
  9. <relativePath/> <!-- lookup parent from repository -->
  10. </parent>
  11. <groupId>fr.natan</groupId>
  12. <artifactId>clean-archi-business-service-project</artifactId>
  13. <version>0.0.1-SNAPSHOT</version>
  14. <name>clean-archi-business-service-project</name>
  15. <description>project microservice with clean architecture pattern design</description>
  16. <properties>
  17. <java.version>17</java.version>
  18. <spring-cloud.version>2022.0.0</spring-cloud.version>
  19. </properties>
  20. <dependencies>
  21. <dependency>
  22. <groupId>org.springframework.boot</groupId>
  23. <artifactId>spring-boot-starter-data-jpa</artifactId>
  24. </dependency>
  25. <dependency>
  26. <groupId>org.springframework.boot</groupId>
  27. <artifactId>spring-boot-starter-web</artifactId>
  28. </dependency>
  29. <dependency>
  30. <groupId>org.springframework.cloud</groupId>
  31. <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.springframework.cloud</groupId>
  35. <artifactId>spring-cloud-starter-openfeign</artifactId>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.springframework.boot</groupId>
  39. <artifactId>spring-boot-devtools</artifactId>
  40. <scope>runtime</scope>
  41. <optional>true</optional>
  42. </dependency>
  43. <dependency>
  44. <groupId>com.mysql</groupId>
  45. <artifactId>mysql-connector-j</artifactId>
  46. <scope>runtime</scope>
  47. </dependency>
  48. <dependency>
  49. <groupId>org.projectlombok</groupId>
  50. <artifactId>lombok</artifactId>
  51. <optional>true</optional>
  52. </dependency>
  53. <dependency>
  54. <groupId>org.springframework.boot</groupId>
  55. <artifactId>spring-boot-starter-test</artifactId>
  56. <scope>test</scope>
  57. </dependency>
  58. <!-- config client dependencies-->
  59. <dependency>
  60. <groupId>org.springframework.cloud</groupId>
  61. <artifactId>spring-cloud-starter-config</artifactId>
  62. </dependency>
  63. <dependency>
  64. <groupId>org.springframework.cloud</groupId>
  65. <artifactId>spring-cloud-starter-bootstrap</artifactId>
  66. </dependency>
  67. <!-- dependency for spring cloud circuit breaker resilience4j-->
  68. <dependency>
  69. <groupId>org.springframework.cloud</groupId>
  70. <artifactId>spring-cloud-starter-circuitbreaker-resilience4j</artifactId>
  71. </dependency>
  72. </dependencies>
  73. <dependencyManagement>
  74. <dependencies>
  75. <dependency>
  76. <groupId>org.springframework.cloud</groupId>
  77. <artifactId>spring-cloud-dependencies</artifactId>
  78. <version>${spring-cloud.version}</version>
  79. <type>pom</type>
  80. <scope>import</scope>
  81. </dependency>
  82. </dependencies>
  83. </dependencyManagement>
  84. <build>
  85. <finalName>clean-archi-business-service-project</finalName>
  86. <plugins>
  87. <plugin>
  88. <groupId>org.springframework.boot</groupId>
  89. <artifactId>spring-boot-maven-plugin</artifactId>
  90. <configuration>
  91. <excludes>
  92. <exclude>
  93. <groupId>org.project-lombok</groupId>
  94. <artifactId>lombok</artifactId>
  95. </exclude>
  96. </excludes>
  97. <layers>
  98. <enabled>true</enabled>
  99. </layers>
  100. </configuration>
  101. </plugin>
  102. <plugin>
  103. <artifactId>maven-surefire-plugin</artifactId>
  104. <version>2.10</version>
  105. <configuration>
  106. <useFile>false</useFile>
  107. </configuration>
  108. </plugin>
  109. </plugins>
  110. </build>
  111. <repositories>
  112. <repository>
  113. <id>netflix-candidates</id>
  114. <name>Netflix Candidates</name>
  115. <url>https://artifactory-oss.prod.netflix.net/artifactory/maven-oss-candidates</url>
  116. <snapshots>
  117. <enabled>false</enabled>
  118. </snapshots>
  119. </repository>
  120. </repositories>
  121. </project>

Powered by TurnKey Linux.