pom.xml 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>com.jiayue.ipfcst.external</groupId>
  7. <artifactId>ipfcst-external-parent</artifactId>
  8. <version>1.0.0.RELEASE</version>
  9. </parent>
  10. <artifactId>ipfcst-external</artifactId>
  11. <packaging>jar</packaging>
  12. <dependencies>
  13. <!--日志处理-->
  14. <!--<dependency>-->
  15. <!--<groupId>com.jiayue</groupId>-->
  16. <!--<artifactId>ipfcst-common-log</artifactId>-->
  17. <!--<version>1.0.0 RELEASE</version>-->
  18. <!--</dependency>-->
  19. <dependency>
  20. <groupId>com.jiayue.ipfcst.external</groupId>
  21. <artifactId>ipfcst-external-common-core</artifactId>
  22. <version>1.0.0.RELEASE</version>
  23. </dependency>
  24. <dependency>
  25. <groupId>com.jiayue.ipfcst.external</groupId>
  26. <artifactId>ipfcst-external-api</artifactId>
  27. <version>1.0.0.RELEASE</version>
  28. </dependency>
  29. <!--mybatis 模块-->
  30. <dependency>
  31. <groupId>com.jiayue.ipfcst.external</groupId>
  32. <artifactId>ipfcst-external-common-mybatis</artifactId>
  33. <version>1.0.0.RELEASE</version>
  34. </dependency>
  35. <dependency>
  36. <groupId>com.jiayue.ipfcst.external</groupId>
  37. <artifactId>ipfcst-external-common-swagger</artifactId>
  38. <version>1.0.0.RELEASE</version>
  39. </dependency>
  40. <!--注册中心客户端-->
  41. <dependency>
  42. <groupId>com.alibaba.cloud</groupId>
  43. <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
  44. </dependency>
  45. <!--配置中心客户端-->
  46. <dependency>
  47. <groupId>com.alibaba.cloud</groupId>
  48. <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
  49. </dependency>
  50. <!--undertow容器-->
  51. <dependency>
  52. <groupId>org.springframework.boot</groupId>
  53. <artifactId>spring-boot-starter-undertow</artifactId>
  54. </dependency>
  55. </dependencies>
  56. <build>
  57. <plugins>
  58. <plugin>
  59. <groupId>org.springframework.boot</groupId>
  60. <artifactId>spring-boot-maven-plugin</artifactId>
  61. </plugin>
  62. </plugins>
  63. </build>
  64. </project>