pom.xml 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  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/maven-v4_0_0.xsd">
  3. <parent>
  4. <groupId>com.fs4a.interfaces</groupId>
  5. <artifactId>fs4a-interfaces</artifactId>
  6. <version>1.0.0</version>
  7. </parent>
  8. <modelVersion>4.0.0</modelVersion>
  9. <groupId>com.fs4a.interfaces.gateway</groupId>
  10. <artifactId>interfaces-gateway</artifactId>
  11. <packaging>jar</packaging>
  12. <dependencyManagement>
  13. <dependencies>
  14. <dependency>
  15. <groupId>org.springframework.cloud</groupId>
  16. <artifactId>spring-cloud-dependencies</artifactId>
  17. <version>${spring-cloud.version}</version>
  18. <type>pom</type>
  19. <scope>import</scope>
  20. </dependency>
  21. </dependencies>
  22. </dependencyManagement>
  23. <dependencies>
  24. <dependency>
  25. <groupId>org.springframework.cloud</groupId>
  26. <artifactId>spring-cloud-starter-openfeign</artifactId>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.springframework.boot</groupId>
  30. <artifactId>spring-boot-autoconfigure</artifactId>
  31. <version>2.1.0.RELEASE</version>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.springframework.boot</groupId>
  35. <artifactId>spring-boot-starter-webflux</artifactId>
  36. </dependency>
  37. <!-- <dependency>-->
  38. <!-- <artifactId>spring-boot-starter-logging</artifactId>-->
  39. <!-- <groupId>org.springframework.boot</groupId>-->
  40. <!-- </dependency>-->
  41. <!-- <dependency>-->
  42. <!-- <groupId>org.springframework.boot</groupId>-->
  43. <!-- <artifactId>spring-boot-starter-undertow</artifactId>-->
  44. <!-- </dependency>-->
  45. <dependency>
  46. <groupId>com.fs4a.middleware.nacos.register</groupId>
  47. <artifactId>fs4a-nacos-register</artifactId>
  48. <version>${fs4a.version}</version>
  49. <scope>compile</scope>
  50. <exclusions>
  51. <exclusion>
  52. <groupId>org.springframework.boot</groupId>
  53. <artifactId>spring-boot-starter-undertow</artifactId>
  54. </exclusion>
  55. <exclusion>
  56. <artifactId>spring-boot-starter-logging</artifactId>
  57. <groupId>org.springframework.boot</groupId>
  58. </exclusion>
  59. </exclusions>
  60. </dependency>
  61. <!-- MyBatis-Plus代码生成器-->
  62. <!-- <dependency>-->
  63. <!-- <groupId>com.baomidou</groupId>-->
  64. <!-- <artifactId>mybatis-plus-boot-starter</artifactId>-->
  65. <!-- <version>3.0-RC3</version>-->
  66. <!-- </dependency>-->
  67. <!--数据库连接jdbc依赖-->
  68. <!-- <dependency>-->
  69. <!-- <groupId>org.springframework.boot</groupId>-->
  70. <!-- <artifactId>spring-boot-starter-jdbc</artifactId>-->
  71. <!-- </dependency>-->
  72. <!-- &lt;!&ndash;mysql链接依赖&ndash;&gt;-->
  73. <!-- <dependency>-->
  74. <!-- <groupId>mysql</groupId>-->
  75. <!-- <artifactId>mysql-connector-java</artifactId>-->
  76. <!-- </dependency>-->
  77. <!-- &lt;!&ndash;阿里druid数据库链接依赖&ndash;&gt;-->
  78. <!-- <dependency>-->
  79. <!-- <groupId>com.alibaba</groupId>-->
  80. <!-- <artifactId>druid</artifactId>-->
  81. <!-- <version>1.1.9</version>-->
  82. <!-- </dependency>-->
  83. <dependency>
  84. <groupId>com.fs4a.commons.jwt</groupId>
  85. <artifactId>common-jwt</artifactId>
  86. <version>1.0.0</version>
  87. </dependency>
  88. <dependency>
  89. <groupId>org.springframework.cloud</groupId>
  90. <artifactId>spring-cloud-starter-gateway</artifactId>
  91. </dependency>
  92. <dependency>
  93. <groupId>org.springframework.cloud</groupId>
  94. <artifactId>spring-cloud-starter-netflix-hystrix</artifactId>
  95. </dependency>
  96. <dependency>
  97. <groupId>com.github.vladimir-bukhtoyarov</groupId>
  98. <artifactId>bucket4j-core</artifactId>
  99. <version>4.0.0</version>
  100. </dependency>
  101. <dependency>
  102. <artifactId>common-basic</artifactId>
  103. <groupId>com.fs4a.commons.basic</groupId>
  104. <version>${fs4a.version}</version>
  105. <scope>compile</scope>
  106. </dependency>
  107. <dependency>
  108. <groupId>org.projectlombok</groupId>
  109. <artifactId>lombok</artifactId>
  110. <version>1.18.20</version>
  111. <scope>compile</scope>
  112. </dependency>
  113. <dependency>
  114. <groupId>javax.servlet</groupId>
  115. <artifactId>javax.servlet-api</artifactId>
  116. </dependency>
  117. <dependency>
  118. <groupId>org.springframework.boot</groupId>
  119. <artifactId>spring-boot-starter-actuator</artifactId>
  120. </dependency>
  121. </dependencies>
  122. <build>
  123. <plugins>
  124. <plugin>
  125. <groupId>org.springframework.boot</groupId>
  126. <artifactId>spring-boot-maven-plugin</artifactId>
  127. <version>${spring-boot.version}</version>
  128. <configuration>
  129. <fork>false</fork>
  130. <classifier>exec</classifier>
  131. </configuration>
  132. <executions>
  133. <execution>
  134. <goals>
  135. <goal>repackage</goal>
  136. </goals>
  137. </execution>
  138. </executions>
  139. </plugin>
  140. </plugins>
  141. </build>
  142. </project>