pom.xml 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <parent>
  5. <groupId>edu.travel</groupId>
  6. <artifactId>edu-travel-api</artifactId>
  7. <version>1.0-SNAPSHOT</version>
  8. </parent>
  9. <artifactId>edu-travel-api-web</artifactId>
  10. <packaging>jar</packaging>
  11. <name>edu-travel-api-web</name>
  12. <url>http://maven.apache.org</url>
  13. <properties>
  14. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  15. </properties>
  16. <dependencies>
  17. <dependency>
  18. <groupId>org.springframework.boot</groupId>
  19. <artifactId>spring-boot-starter-validation</artifactId>
  20. </dependency>
  21. <dependency>
  22. <groupId>org.springframework.boot</groupId>
  23. <artifactId>spring-boot-starter-web</artifactId>
  24. </dependency>
  25. <dependency>
  26. <groupId>com.alibaba.cloud</groupId>
  27. <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
  28. </dependency>
  29. <dependency>
  30. <groupId>com.alibaba.cloud</groupId>
  31. <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.springframework.cloud</groupId>
  35. <artifactId>spring-cloud-starter-zipkin</artifactId>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.springframework.cloud</groupId>
  39. <artifactId>spring-cloud-starter-security</artifactId>
  40. </dependency>
  41. <dependency>
  42. <groupId>org.springframework.cloud</groupId>
  43. <artifactId>spring-cloud-starter-oauth2</artifactId>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.springframework.cloud</groupId>
  47. <artifactId>spring-cloud-starter-bootstrap</artifactId>
  48. </dependency>
  49. <dependency>
  50. <groupId>javax.servlet</groupId>
  51. <artifactId>javax.servlet-api</artifactId>
  52. </dependency>
  53. <dependency>
  54. <groupId>org.projectlombok</groupId>
  55. <artifactId>lombok</artifactId>
  56. </dependency>
  57. <dependency>
  58. <groupId>org.apache.commons</groupId>
  59. <artifactId>commons-lang3</artifactId>
  60. </dependency>
  61. <dependency>
  62. <groupId>cn.hutool</groupId>
  63. <artifactId>hutool-all</artifactId>
  64. </dependency>
  65. <dependency>
  66. <groupId>com.alibaba</groupId>
  67. <artifactId>fastjson</artifactId>
  68. </dependency>
  69. <dependency>
  70. <groupId>com.alibaba.csp</groupId>
  71. <artifactId>sentinel-transport-simple-http</artifactId>
  72. </dependency>
  73. <dependency>
  74. <groupId>com.alibaba.csp</groupId>
  75. <artifactId>sentinel-annotation-aspectj</artifactId>
  76. </dependency>
  77. <dependency>
  78. <groupId>com.alibaba.csp</groupId>
  79. <artifactId>sentinel-core</artifactId>
  80. </dependency>
  81. <dependency>
  82. <groupId>com.alibaba.cloud</groupId>
  83. <artifactId>spring-cloud-starter-alibaba-sentinel</artifactId>
  84. </dependency>
  85. <dependency>
  86. <groupId>com.alibaba.cloud</groupId>
  87. <artifactId>spring-cloud-alibaba-sentinel-datasource</artifactId>
  88. </dependency>
  89. <dependency>
  90. <groupId>com.alibaba.csp</groupId>
  91. <artifactId>sentinel-datasource-nacos</artifactId>
  92. </dependency>
  93. <dependency>
  94. <groupId>com.alibaba.csp</groupId>
  95. <artifactId>sentinel-web-servlet</artifactId>
  96. </dependency>
  97. <dependency>
  98. <groupId>edu.travel</groupId>
  99. <artifactId>edu-travel-remote-tenant</artifactId>
  100. <version>1.0-SNAPSHOT</version>
  101. </dependency>
  102. <dependency>
  103. <groupId>edu.travel</groupId>
  104. <artifactId>edu-travel-remote-upload</artifactId>
  105. <version>1.0-SNAPSHOT</version>
  106. </dependency>
  107. <dependency>
  108. <groupId>edu.travel</groupId>
  109. <artifactId>edu-travel-common-util</artifactId>
  110. <version>1.0-SNAPSHOT</version>
  111. </dependency>
  112. <dependency>
  113. <groupId>edu.travel</groupId>
  114. <artifactId>edu-travel-model-base</artifactId>
  115. <version>1.0-SNAPSHOT</version>
  116. </dependency>
  117. <dependency>
  118. <groupId>edu.travel</groupId>
  119. <artifactId>edu-travel-common-constant</artifactId>
  120. <version>1.0-SNAPSHOT</version>
  121. </dependency>
  122. <dependency>
  123. <groupId>edu.travel</groupId>
  124. <artifactId>edu-travel-common-core</artifactId>
  125. <version>1.0-SNAPSHOT</version>
  126. </dependency>
  127. <dependency>
  128. <groupId>edu.travel</groupId>
  129. <artifactId>edu-travel-common-cache</artifactId>
  130. <version>1.0-SNAPSHOT</version>
  131. </dependency>
  132. </dependencies>
  133. </project>