pom.xml 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  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>cloud-helper</artifactId>
  7. <groupId>com.sm</groupId>
  8. <version>1.0-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>cloud-gateway</artifactId>
  12. <dependencies>
  13. <dependency>
  14. <groupId>org.springframework.cloud</groupId>
  15. <artifactId>spring-cloud-starter-gateway</artifactId>
  16. </dependency>
  17. <!-- Sa-Token 权限认证(Reactor响应式集成), 在线文档:http://sa-token.dev33.cn/ -->
  18. <dependency>
  19. <groupId>cn.dev33</groupId>
  20. <artifactId>sa-token-reactor-spring-boot-starter</artifactId>
  21. <version>1.31.0</version>
  22. </dependency>
  23. <!-- Sa-Token 整合 Redis (使用 jackson 序列化方式) -->
  24. <dependency>
  25. <groupId>cn.dev33</groupId>
  26. <artifactId>sa-token-dao-redis-jackson</artifactId>
  27. <version>1.33.0</version>
  28. </dependency>
  29. <dependency>
  30. <groupId>com.sm</groupId>
  31. <artifactId>cloud-admin-api</artifactId>
  32. <version>1.0-SNAPSHOT</version>
  33. <scope>compile</scope>
  34. <exclusions>
  35. <exclusion>
  36. <groupId>com.baomidou</groupId>
  37. <artifactId>mybatis-plus-boot-starter</artifactId>
  38. </exclusion>
  39. <exclusion>
  40. <groupId>org.springframework.boot</groupId>
  41. <artifactId>spring-boot-starter-web</artifactId>
  42. </exclusion>
  43. </exclusions>
  44. </dependency>
  45. </dependencies>
  46. <build>
  47. <plugins>
  48. <plugin>
  49. <groupId>org.springframework.boot</groupId>
  50. <artifactId>spring-boot-maven-plugin</artifactId>
  51. </plugin>
  52. <plugin>
  53. <groupId>org.apache.maven.plugins</groupId>
  54. <artifactId>maven-compiler-plugin</artifactId>
  55. <configuration>
  56. <source>1.8</source>
  57. <target>1.8</target>
  58. <encoding>UTF-8</encoding>
  59. </configuration>
  60. </plugin>
  61. </plugins>
  62. </build>
  63. </project>