pom.xml 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>org.zhongzheng</groupId>
  7. <artifactId>ZZBusiness</artifactId>
  8. <version>1.0-SNAPSHOT</version>
  9. </parent>
  10. <artifactId>zzbusiness-common</artifactId>
  11. <!--打包方式-->
  12. <packaging>jar</packaging>
  13. <dependencies>
  14. <dependency>
  15. <!--父POM中锁定了版本信息,只需引入G,A即可 -->
  16. <groupId>org.springframework.cloud</groupId>
  17. <artifactId>spring-cloud-starter-openfeign</artifactId>
  18. <version>2.2.8.RELEASE</version>
  19. </dependency>
  20. <dependency>
  21. <groupId>com.baomidou</groupId>
  22. <artifactId>mybatis-plus-boot-starter</artifactId>
  23. <version>${mybatis-plus.version}</version>
  24. </dependency>
  25. <dependency>
  26. <groupId>org.projectlombok</groupId>
  27. <artifactId>lombok</artifactId>
  28. </dependency>
  29. <!-- MySQL -->
  30. <dependency>
  31. <groupId>mysql</groupId>
  32. <artifactId>mysql-connector-java</artifactId>
  33. <version>${mysql.connector.version}</version>
  34. </dependency>
  35. <dependency>
  36. <groupId>io.springfox</groupId>
  37. <artifactId>springfox-swagger2</artifactId>
  38. <version>2.9.2</version>
  39. </dependency>
  40. <!--jackson依赖-->
  41. <dependency>
  42. <groupId>com.fasterxml.jackson.core</groupId>
  43. <artifactId>jackson-databind</artifactId>
  44. <version>2.9.1</version>
  45. </dependency>
  46. </dependencies>
  47. <build>
  48. <plugins>
  49. <plugin>
  50. <groupId>org.springframework.boot</groupId>
  51. <artifactId>spring-boot-maven-plugin</artifactId>
  52. <version>${springboot.version}</version>
  53. </plugin>
  54. </plugins>
  55. </build>
  56. </project>