pom.xml 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <parent>
  6. <artifactId>forest-mall-cloud</artifactId>
  7. <groupId>com.hwrj.cloud</groupId>
  8. <version>0.0.1-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <groupId>com.hwrj.cloud.gateway</groupId>
  12. <artifactId>forest-gateway</artifactId>
  13. <packaging>jar</packaging>
  14. <dependencies>
  15. <dependency>
  16. <groupId>com.hwrj.cloud.common</groupId>
  17. <artifactId>forest-common</artifactId>
  18. <version>${forest.version}</version>
  19. <exclusions>
  20. <exclusion>
  21. <groupId>org.springframework.boot</groupId>
  22. <artifactId>spring-boot-starter-web</artifactId>
  23. </exclusion>
  24. <exclusion>
  25. <groupId>com.github.pagehelper</groupId>
  26. <artifactId>pagehelper-spring-boot-starter</artifactId>
  27. </exclusion>
  28. <exclusion>
  29. <groupId>org.apache.tomcat.embed</groupId>
  30. <artifactId>tomcat-embed-core</artifactId>
  31. </exclusion>
  32. </exclusions>
  33. </dependency>
  34. <!-- gateway -->
  35. <dependency>
  36. <groupId>org.springframework.cloud</groupId>
  37. <artifactId>spring-cloud-starter-gateway</artifactId>
  38. </dependency>
  39. <!-- nacos discovery-->
  40. <dependency>
  41. <groupId>com.alibaba.cloud</groupId>
  42. <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
  43. </dependency>
  44. <!-- spring boot admin client -->
  45. <dependency>
  46. <groupId>de.codecentric</groupId>
  47. <artifactId>spring-boot-admin-starter-client</artifactId>
  48. </dependency>
  49. <dependency>
  50. <groupId>org.projectlombok</groupId>
  51. <artifactId>lombok</artifactId>
  52. </dependency>
  53. <dependency>
  54. <groupId>org.springframework.boot</groupId>
  55. <artifactId>spring-boot-configuration-processor</artifactId>
  56. <optional>true</optional>
  57. </dependency>
  58. <dependency>
  59. <groupId>org.springframework.boot</groupId>
  60. <artifactId>spring-boot-starter-data-redis</artifactId>
  61. </dependency>
  62. <!-- nacos config -->
  63. <dependency>
  64. <groupId>com.alibaba.cloud</groupId>
  65. <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
  66. </dependency>
  67. <dependency>
  68. <groupId>io.jsonwebtoken</groupId>
  69. <artifactId>jjwt</artifactId>
  70. </dependency>
  71. </dependencies>
  72. <build>
  73. <plugins>
  74. <plugin>
  75. <groupId>org.springframework.boot</groupId>
  76. <artifactId>spring-boot-maven-plugin</artifactId>
  77. </plugin>
  78. </plugins>
  79. </build>
  80. </project>