pom.xml 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>com.poyee</groupId>
  8. <artifactId>b2b-product-service</artifactId>
  9. <version>1.0-SNAPSHOT</version>
  10. </parent>
  11. <artifactId>product-common</artifactId>
  12. <name>product-common</name>
  13. <description>商品服务公共模块</description>
  14. <dependencies>
  15. <dependency>
  16. <groupId>com.github.pagehelper</groupId>
  17. <artifactId>pagehelper-spring-boot-starter</artifactId>
  18. </dependency>
  19. <dependency>
  20. <groupId>com.qcloud</groupId>
  21. <artifactId>cos_api</artifactId>
  22. </dependency>
  23. <dependency>
  24. <groupId>com.alibaba</groupId>
  25. <artifactId>fastjson</artifactId>
  26. </dependency>
  27. <dependency>
  28. <groupId>cn.hutool</groupId>
  29. <artifactId>hutool-all</artifactId>
  30. </dependency>
  31. <dependency>
  32. <groupId>org.springframework.boot</groupId>
  33. <artifactId>spring-boot-starter-aop</artifactId>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.springframework.boot</groupId>
  37. <artifactId>spring-boot-starter-web</artifactId>
  38. </dependency>
  39. <dependency>
  40. <groupId>com.baomidou</groupId>
  41. <artifactId>mybatis-plus-boot-starter</artifactId>
  42. </dependency>
  43. <dependency>
  44. <groupId>com.github.xiaoymin</groupId>
  45. <artifactId>knife4j-spring-boot-starter</artifactId>
  46. </dependency>
  47. <dependency>
  48. <groupId>org.redisson</groupId>
  49. <artifactId>redisson-spring-boot-starter</artifactId>
  50. </dependency>
  51. <dependency>
  52. <groupId>com.auth0</groupId>
  53. <artifactId>java-jwt</artifactId>
  54. </dependency>
  55. <!-- Lombok -->
  56. <dependency>
  57. <groupId>org.projectlombok</groupId>
  58. <artifactId>lombok</artifactId>
  59. <scope>provided</scope>
  60. </dependency>
  61. <dependency>
  62. <groupId>com.google.guava</groupId>
  63. <artifactId>guava</artifactId>
  64. <version>32.1.2-jre</version>
  65. <scope>compile</scope>
  66. </dependency>
  67. <dependency>
  68. <groupId>org.springframework.cloud</groupId>
  69. <artifactId>spring-cloud-starter-openfeign</artifactId>
  70. </dependency>
  71. <!-- MapStruct -->
  72. <dependency>
  73. <groupId>org.mapstruct</groupId>
  74. <artifactId>mapstruct</artifactId>
  75. </dependency>
  76. <dependency>
  77. <groupId>org.mapstruct</groupId>
  78. <artifactId>mapstruct-processor</artifactId>
  79. <scope>provided</scope>
  80. </dependency>
  81. </dependencies>
  82. <build>
  83. <plugins>
  84. <plugin>
  85. <groupId>org.apache.maven.plugins</groupId>
  86. <artifactId>maven-compiler-plugin</artifactId>
  87. <version>3.8.1</version>
  88. <configuration>
  89. <source>1.8</source>
  90. <target>1.8</target>
  91. <annotationProcessorPaths>
  92. <path>
  93. <groupId>org.mapstruct</groupId>
  94. <artifactId>mapstruct-processor</artifactId>
  95. <version>${mapstruct.version}</version>
  96. </path>
  97. <path>
  98. <groupId>org.projectlombok</groupId>
  99. <artifactId>lombok</artifactId>
  100. <version>${lombok.version}</version>
  101. </path>
  102. <path>
  103. <groupId>org.projectlombok</groupId>
  104. <artifactId>lombok-mapstruct-binding</artifactId>
  105. <version>0.2.0</version>
  106. </path>
  107. </annotationProcessorPaths>
  108. </configuration>
  109. </plugin>
  110. </plugins>
  111. </build>
  112. </project>