pom.xml 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  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>com.auth0</groupId>
  45. <artifactId>java-jwt</artifactId>
  46. </dependency>
  47. <!-- Lombok -->
  48. <dependency>
  49. <groupId>org.projectlombok</groupId>
  50. <artifactId>lombok</artifactId>
  51. <scope>provided</scope>
  52. </dependency>
  53. <dependency>
  54. <groupId>com.google.guava</groupId>
  55. <artifactId>guava</artifactId>
  56. <version>32.1.2-jre</version>
  57. <scope>compile</scope>
  58. </dependency>
  59. <dependency>
  60. <groupId>org.springframework.cloud</groupId>
  61. <artifactId>spring-cloud-starter-openfeign</artifactId>
  62. </dependency>
  63. <!-- MapStruct -->
  64. <dependency>
  65. <groupId>org.mapstruct</groupId>
  66. <artifactId>mapstruct</artifactId>
  67. </dependency>
  68. <dependency>
  69. <groupId>org.mapstruct</groupId>
  70. <artifactId>mapstruct-processor</artifactId>
  71. <scope>provided</scope>
  72. </dependency>
  73. </dependencies>
  74. <build>
  75. <plugins>
  76. <plugin>
  77. <groupId>org.apache.maven.plugins</groupId>
  78. <artifactId>maven-compiler-plugin</artifactId>
  79. <version>3.8.1</version>
  80. <configuration>
  81. <source>1.8</source>
  82. <target>1.8</target>
  83. <annotationProcessorPaths>
  84. <path>
  85. <groupId>org.mapstruct</groupId>
  86. <artifactId>mapstruct-processor</artifactId>
  87. <version>${mapstruct.version}</version>
  88. </path>
  89. <path>
  90. <groupId>org.projectlombok</groupId>
  91. <artifactId>lombok</artifactId>
  92. <version>${lombok.version}</version>
  93. </path>
  94. <path>
  95. <groupId>org.projectlombok</groupId>
  96. <artifactId>lombok-mapstruct-binding</artifactId>
  97. <version>0.2.0</version>
  98. </path>
  99. </annotationProcessorPaths>
  100. </configuration>
  101. </plugin>
  102. </plugins>
  103. </build>
  104. </project>