pom.xml 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  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.qcloud</groupId>
  17. <artifactId>cos_api</artifactId>
  18. </dependency>
  19. <dependency>
  20. <groupId>com.alibaba</groupId>
  21. <artifactId>fastjson</artifactId>
  22. </dependency>
  23. <dependency>
  24. <groupId>cn.hutool</groupId>
  25. <artifactId>hutool-all</artifactId>
  26. </dependency>
  27. <dependency>
  28. <groupId>org.springframework.boot</groupId>
  29. <artifactId>spring-boot-starter-aop</artifactId>
  30. </dependency>
  31. <dependency>
  32. <groupId>org.springframework.boot</groupId>
  33. <artifactId>spring-boot-starter-web</artifactId>
  34. </dependency>
  35. <dependency>
  36. <groupId>com.baomidou</groupId>
  37. <artifactId>mybatis-plus-boot-starter</artifactId>
  38. </dependency>
  39. <dependency>
  40. <groupId>com.github.xiaoymin</groupId>
  41. <artifactId>knife4j-spring-boot-starter</artifactId>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.redisson</groupId>
  45. <artifactId>redisson-spring-boot-starter</artifactId>
  46. </dependency>
  47. <dependency>
  48. <groupId>com.auth0</groupId>
  49. <artifactId>java-jwt</artifactId>
  50. </dependency>
  51. <!-- Lombok -->
  52. <dependency>
  53. <groupId>org.projectlombok</groupId>
  54. <artifactId>lombok</artifactId>
  55. <scope>provided</scope>
  56. </dependency>
  57. <dependency>
  58. <groupId>com.google.guava</groupId>
  59. <artifactId>guava</artifactId>
  60. <version>32.1.2-jre</version>
  61. <scope>compile</scope>
  62. </dependency>
  63. <dependency>
  64. <groupId>org.springframework.cloud</groupId>
  65. <artifactId>spring-cloud-starter-openfeign</artifactId>
  66. </dependency>
  67. <!-- MapStruct -->
  68. <dependency>
  69. <groupId>org.mapstruct</groupId>
  70. <artifactId>mapstruct</artifactId>
  71. </dependency>
  72. <dependency>
  73. <groupId>org.mapstruct</groupId>
  74. <artifactId>mapstruct-processor</artifactId>
  75. <scope>provided</scope>
  76. </dependency>
  77. </dependencies>
  78. <build>
  79. <plugins>
  80. <plugin>
  81. <groupId>org.apache.maven.plugins</groupId>
  82. <artifactId>maven-compiler-plugin</artifactId>
  83. <version>3.8.1</version>
  84. <configuration>
  85. <source>1.8</source>
  86. <target>1.8</target>
  87. <annotationProcessorPaths>
  88. <path>
  89. <groupId>org.mapstruct</groupId>
  90. <artifactId>mapstruct-processor</artifactId>
  91. <version>${mapstruct.version}</version>
  92. </path>
  93. <path>
  94. <groupId>org.projectlombok</groupId>
  95. <artifactId>lombok</artifactId>
  96. <version>${lombok.version}</version>
  97. </path>
  98. <path>
  99. <groupId>org.projectlombok</groupId>
  100. <artifactId>lombok-mapstruct-binding</artifactId>
  101. <version>0.2.0</version>
  102. </path>
  103. </annotationProcessorPaths>
  104. </configuration>
  105. </plugin>
  106. </plugins>
  107. </build>
  108. </project>