pom.xml 3.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  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>com.sf</groupId>
  7. <artifactId>demo-12306</artifactId>
  8. <version>0.0.1-SNAPSHOT</version>
  9. </parent>
  10. <groupId>com.sf</groupId>
  11. <artifactId>my-gateway</artifactId>
  12. <version>0.0.1-SNAPSHOT</version>
  13. <name>my-gateway</name>
  14. <description>my-gateway</description>
  15. <properties>
  16. <java.version>17</java.version>
  17. <spring-cloud.version>2023.0.1</spring-cloud.version>
  18. </properties>
  19. <dependencies>
  20. <dependency>
  21. <groupId>com.alibaba.cloud</groupId>
  22. <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.springframework.cloud</groupId>
  26. <artifactId>spring-cloud-starter-gateway</artifactId>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.springframework.cloud</groupId>
  30. <artifactId>spring-cloud-starter-loadbalancer</artifactId>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.projectlombok</groupId>
  34. <artifactId>lombok</artifactId>
  35. <version>1.18.32</version>
  36. </dependency>
  37. <!-- jjwt start -->
  38. <dependency>
  39. <groupId>io.jsonwebtoken</groupId>
  40. <artifactId>jjwt</artifactId>
  41. <version>0.9.1</version>
  42. </dependency>
  43. <dependency>
  44. <groupId>javax.xml.bind</groupId>
  45. <artifactId>jaxb-api</artifactId>
  46. <version>2.3.0</version>
  47. </dependency>
  48. <dependency>
  49. <groupId>com.sun.xml.bind</groupId>
  50. <artifactId>jaxb-impl</artifactId>
  51. <version>2.3.0</version>
  52. </dependency>
  53. <dependency>
  54. <groupId>com.sun.xml.bind</groupId>
  55. <artifactId>jaxb-core</artifactId>
  56. <version>2.3.0</version>
  57. </dependency>
  58. <dependency>
  59. <groupId>javax.activation</groupId>
  60. <artifactId>activation</artifactId>
  61. <version>1.1.1</version>
  62. </dependency>
  63. <!-- jjwt end -->
  64. <!-- <dependency>-->
  65. <!-- <groupId>org.opengoofy.index12306</groupId>-->
  66. <!-- <artifactId>index12306-base-spring-boot-starter</artifactId>-->
  67. <!-- <version>${project.version}</version>-->
  68. <!-- </dependency>-->
  69. <dependency>
  70. <groupId>com.alibaba.fastjson2</groupId>
  71. <artifactId>fastjson2</artifactId>
  72. <version>2.0.50.android8</version>
  73. </dependency>
  74. <dependency>
  75. <groupId>org.springframework.boot</groupId>
  76. <artifactId>spring-boot-starter-test</artifactId>
  77. <scope>test</scope>
  78. </dependency>
  79. <dependency>
  80. <groupId>io.projectreactor</groupId>
  81. <artifactId>reactor-test</artifactId>
  82. <scope>test</scope>
  83. </dependency>
  84. </dependencies>
  85. </project>