pom.xml 3.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  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-user-service</artifactId>
  9. <version>1.0-SNAPSHOT</version>
  10. </parent>
  11. <artifactId>user-common</artifactId>
  12. <name>user-common</name>
  13. <description>用户服务公共模块</description>
  14. <dependencies>
  15. <dependency>
  16. <groupId>org.redisson</groupId>
  17. <artifactId>redisson-spring-boot-starter</artifactId>
  18. </dependency>
  19. <dependency>
  20. <groupId>org.mapstruct</groupId>
  21. <artifactId>mapstruct</artifactId>
  22. </dependency>
  23. <dependency>
  24. <groupId>org.springframework.boot</groupId>
  25. <artifactId>spring-boot-starter-web</artifactId>
  26. </dependency>
  27. <dependency>
  28. <groupId>com.alibaba</groupId>
  29. <artifactId>fastjson</artifactId>
  30. </dependency>
  31. <dependency>
  32. <groupId>cn.hutool</groupId>
  33. <artifactId>hutool-all</artifactId>
  34. </dependency>
  35. <dependency>
  36. <groupId>com.github.xiaoymin</groupId>
  37. <artifactId>knife4j-spring-boot-starter</artifactId>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.springframework.boot</groupId>
  41. <artifactId>spring-boot-starter-aop</artifactId>
  42. </dependency>
  43. <dependency>
  44. <groupId>com.baomidou</groupId>
  45. <artifactId>mybatis-plus-boot-starter</artifactId>
  46. </dependency>
  47. <dependency>
  48. <groupId>com.auth0</groupId>
  49. <artifactId>java-jwt</artifactId>
  50. </dependency>
  51. <!-- PageHelper -->
  52. <dependency>
  53. <groupId>com.github.pagehelper</groupId>
  54. <artifactId>pagehelper</artifactId>
  55. <version>${pagehelper.version}</version>
  56. </dependency>
  57. <!-- Lombok -->
  58. <dependency>
  59. <groupId>org.projectlombok</groupId>
  60. <artifactId>lombok</artifactId>
  61. <scope>provided</scope>
  62. </dependency>
  63. </dependencies>
  64. <build>
  65. <plugins>
  66. <plugin>
  67. <groupId>org.apache.maven.plugins</groupId>
  68. <artifactId>maven-compiler-plugin</artifactId>
  69. <version>3.8.1</version>
  70. <configuration>
  71. <source>1.8</source>
  72. <target>1.8</target>
  73. <annotationProcessorPaths>
  74. <path>
  75. <groupId>org.projectlombok</groupId>
  76. <artifactId>lombok</artifactId>
  77. <version>${lombok.version}</version>
  78. </path>
  79. <path>
  80. <groupId>org.mapstruct</groupId>
  81. <artifactId>mapstruct-processor</artifactId>
  82. <version>${mapstruct.version}</version>
  83. </path>
  84. </annotationProcessorPaths>
  85. </configuration>
  86. </plugin>
  87. </plugins>
  88. </build>
  89. </project>