pom.xml 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. <?xml version="1.0"?>
  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.pig4cloud</groupId>
  7. <artifactId>pigx-inventory</artifactId>
  8. <version>3.7.0</version>
  9. </parent>
  10. <artifactId>pigx-inventory-biz</artifactId>
  11. <packaging>jar</packaging>
  12. <description>pig archetype gen</description>
  13. <dependencies>
  14. <!--日志处理-->
  15. <dependency>
  16. <groupId>com.pig4cloud</groupId>
  17. <artifactId>pigx-common-log</artifactId>
  18. </dependency>
  19. <dependency>
  20. <groupId>com.microsoft.sqlserver</groupId>
  21. <artifactId>mssql-jdbc</artifactId>
  22. <scope>runtime</scope>
  23. </dependency>
  24. <dependency>
  25. <groupId>net.oschina.zcx7878</groupId>
  26. <artifactId>fastdfs-client-java</artifactId>
  27. <version>1.27.0.0</version>
  28. </dependency>
  29. <dependency>
  30. <groupId>org.apache.poi</groupId>
  31. <artifactId>poi-ooxml</artifactId>
  32. <version>3.17</version>
  33. </dependency>
  34. <dependency>
  35. <groupId>com.pig4cloud</groupId>
  36. <artifactId>pigx-common-data</artifactId>
  37. </dependency>
  38. <!--swagger-->
  39. <dependency>
  40. <groupId>com.pig4cloud</groupId>
  41. <artifactId>pigx-common-swagger</artifactId>
  42. </dependency>
  43. <!--文件系统-->
  44. <dependency>
  45. <groupId>com.pig4cloud</groupId>
  46. <artifactId>pigx-common-minio</artifactId>
  47. </dependency>
  48. <!--注册中心客户端-->
  49. <dependency>
  50. <groupId>com.alibaba.cloud</groupId>
  51. <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
  52. </dependency>
  53. <!--配置中心客户端-->
  54. <dependency>
  55. <groupId>com.alibaba.cloud</groupId>
  56. <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
  57. </dependency>
  58. <!--spring security 、oauth、jwt依赖-->
  59. <dependency>
  60. <groupId>com.pig4cloud</groupId>
  61. <artifactId>pigx-common-security</artifactId>
  62. </dependency>
  63. <!--支持动态路由配置 -->
  64. <dependency>
  65. <groupId>com.pig4cloud</groupId>
  66. <artifactId>pigx-common-gateway</artifactId>
  67. </dependency>
  68. <!--sentinel 依赖-->
  69. <dependency>
  70. <groupId>com.pig4cloud</groupId>
  71. <artifactId>pigx-common-sentinel</artifactId>
  72. </dependency>
  73. <!--路由控制-->
  74. <dependency>
  75. <groupId>com.pig4cloud</groupId>
  76. <artifactId>pigx-common-gray</artifactId>
  77. </dependency>
  78. <!--mybatis-->
  79. <dependency>
  80. <groupId>com.baomidou</groupId>
  81. <artifactId>mybatis-plus-boot-starter</artifactId>
  82. </dependency>
  83. <!-- druid 连接池 -->
  84. <dependency>
  85. <groupId>com.alibaba</groupId>
  86. <artifactId>druid-spring-boot-starter</artifactId>
  87. </dependency>
  88. <!--数据库-->
  89. <dependency>
  90. <groupId>mysql</groupId>
  91. <artifactId>mysql-connector-java</artifactId>
  92. </dependency>
  93. <!--web 模块-->
  94. <dependency>
  95. <groupId>org.springframework.boot</groupId>
  96. <artifactId>spring-boot-starter-web</artifactId>
  97. </dependency>
  98. <!--undertow容器-->
  99. <dependency>
  100. <groupId>org.springframework.boot</groupId>
  101. <artifactId>spring-boot-starter-undertow</artifactId>
  102. </dependency>
  103. </dependencies>
  104. <build>
  105. <plugins>
  106. <plugin>
  107. <groupId>org.springframework.boot</groupId>
  108. <artifactId>spring-boot-maven-plugin</artifactId>
  109. </plugin>
  110. </plugins>
  111. </build>
  112. </project>