pom.xml 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  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. <artifactId>hz</artifactId>
  7. <groupId>com.hz</groupId>
  8. <version>3.6.0</version>
  9. </parent>
  10. <groupId>com.hz</groupId>
  11. <artifactId>business</artifactId>
  12. <version>3.6.0</version>
  13. <name>business</name>
  14. <description>Demo project for Spring Boot</description>
  15. <properties>
  16. <java.version>1.8</java.version>
  17. </properties>
  18. <dependencies>
  19. <dependency>
  20. <groupId>org.springframework.boot</groupId>
  21. <artifactId>spring-boot-starter-web</artifactId>
  22. </dependency>
  23. <dependency>
  24. <groupId>org.springframework.boot</groupId>
  25. <artifactId>spring-boot-starter-test</artifactId>
  26. <scope>test</scope>
  27. </dependency>
  28. <!-- 通用工具-->
  29. <dependency>
  30. <groupId>com.hz</groupId>
  31. <artifactId>hz-common</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.projectlombok</groupId>
  35. <artifactId>lombok</artifactId>
  36. <optional>true</optional>
  37. </dependency>
  38. <!-- 防止进入swagger页面报类型转换错误,排除3.0.0中的引用,手动增加1.6.2版本 -->
  39. <dependency>
  40. <groupId>io.swagger</groupId>
  41. <artifactId>swagger-models</artifactId>
  42. <version>1.6.2</version>
  43. </dependency>
  44. <dependency>
  45. <groupId>com.hz</groupId>
  46. <artifactId>hz-system</artifactId>
  47. </dependency>
  48. <dependency>
  49. <groupId>com.aliyun.oss</groupId>
  50. <artifactId>aliyun-sdk-oss</artifactId>
  51. <version>2.4.0</version>
  52. </dependency>
  53. <dependency>
  54. <groupId>com.alibaba</groupId>
  55. <artifactId>druid</artifactId>
  56. <version>1.2.8</version>
  57. </dependency>
  58. <dependency>
  59. <groupId>com.aliyun.lindorm</groupId>
  60. <artifactId>lindorm-all-client</artifactId>
  61. <version>2.0.4</version>
  62. </dependency>
  63. <dependency>
  64. <groupId>mysql</groupId>
  65. <artifactId>mysql-connector-java</artifactId>
  66. <version>5.1.35</version>
  67. </dependency>
  68. <dependency>
  69. <groupId>org.springframework.boot</groupId>
  70. <artifactId>spring-boot-test</artifactId>
  71. </dependency>
  72. <dependency>
  73. <groupId>org.testng</groupId>
  74. <artifactId>testng</artifactId>
  75. <version>7.6.0</version>
  76. <scope>compile</scope>
  77. </dependency>
  78. <!-- https://mvnrepository.com/artifact/org.springframework.kafka/spring-kafka -->
  79. <dependency>
  80. <groupId>org.springframework.kafka</groupId>
  81. <artifactId>spring-kafka</artifactId>
  82. <version>2.8.6</version>
  83. </dependency>
  84. <!-- hbaseClient依赖 -->
  85. <dependency>
  86. <groupId>org.apache.phoenix</groupId>
  87. <artifactId>phoenix-queryserver-client</artifactId>
  88. <version>5.0.0-HBase-2.0</version>
  89. <exclusions>
  90. <exclusion>
  91. <groupId>org.slf4j</groupId>
  92. <artifactId>slf4j-log4j12</artifactId>
  93. </exclusion>
  94. <exclusion>
  95. <groupId>log4j</groupId>
  96. <artifactId>log4j</artifactId>
  97. </exclusion>
  98. </exclusions>
  99. </dependency>
  100. </dependencies>
  101. <build>
  102. <plugins>
  103. <plugin>
  104. <groupId>org.springframework.boot</groupId>
  105. <artifactId>spring-boot-maven-plugin</artifactId>
  106. </plugin>
  107. </plugins>
  108. </build>
  109. </project>