pom.xml 2.2 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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <parent>
  5. <groupId>com.crunii.microservice</groupId>
  6. <artifactId>service-qm</artifactId>
  7. <version>${micro.version}</version>
  8. </parent>
  9. <modelVersion>4.0.0</modelVersion>
  10. <artifactId>service-qm-api</artifactId>
  11. <dependencies>
  12. <dependency>
  13. <groupId>com.crunii.microservice</groupId>
  14. <artifactId>service-sysmgr-api</artifactId>
  15. <version>${micro.version}</version>
  16. </dependency>
  17. <dependency>
  18. <groupId>io.github.openfeign</groupId>
  19. <artifactId>feign-httpclient</artifactId>
  20. </dependency>
  21. <dependency>
  22. <groupId>org.springframework.cloud</groupId>
  23. <artifactId>spring-cloud-starter-openfeign</artifactId>
  24. <exclusions>
  25. <exclusion>
  26. <artifactId>jsr305</artifactId>
  27. <groupId>com.google.code.findbugs</groupId>
  28. </exclusion>
  29. </exclusions>
  30. </dependency>
  31. <dependency>
  32. <groupId>org.projectlombok</groupId>
  33. <artifactId>lombok</artifactId>
  34. </dependency>
  35. <!-- Swagger -->
  36. <dependency>
  37. <groupId>io.swagger</groupId>
  38. <artifactId>swagger-annotations</artifactId>
  39. </dependency>
  40. <dependency>
  41. <groupId>com.alibaba</groupId>
  42. <artifactId>easyexcel</artifactId>
  43. <version>3.1.1</version>
  44. </dependency>
  45. <dependency>
  46. <groupId>com.crunii.microservice</groupId>
  47. <artifactId>micro-core</artifactId>
  48. </dependency>
  49. </dependencies>
  50. <build>
  51. <plugins>
  52. <!-- 跳过parent的打包插件 -->
  53. <plugin>
  54. <groupId>org.springframework.boot</groupId>
  55. <artifactId>spring-boot-maven-plugin</artifactId>
  56. <configuration>
  57. <skip>true</skip>
  58. </configuration>
  59. </plugin>
  60. </plugins>
  61. </build>
  62. </project>