pom.xml 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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. <parent>
  6. <artifactId>jjt</artifactId>
  7. <groupId>com.jjt</groupId>
  8. <version>3.8.7</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>jjt-biz</artifactId>
  12. <description>
  13. 业务模块
  14. </description>
  15. <dependencies>
  16. <!-- 核心模块-->
  17. <dependency>
  18. <groupId>com.jjt</groupId>
  19. <artifactId>jjt-framework</artifactId>
  20. </dependency>
  21. <!-- swagger3-->
  22. <dependency>
  23. <groupId>io.springfox</groupId>
  24. <artifactId>springfox-boot-starter</artifactId>
  25. </dependency>
  26. <!-- 防止进入swagger页面报类型转换错误,排除3.0.0中的引用,手动增加1.6.2版本 -->
  27. <dependency>
  28. <groupId>io.swagger</groupId>
  29. <artifactId>swagger-models</artifactId>
  30. <version>1.6.2</version>
  31. </dependency>
  32. <dependency>
  33. <groupId>com.jjt</groupId>
  34. <artifactId>jjt-common</artifactId>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.projectlombok</groupId>
  38. <artifactId>lombok</artifactId>
  39. </dependency>
  40. </dependencies>
  41. </project>