pom.xml 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  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-qzh</artifactId>
  7. <version>${micro.version}</version>
  8. </parent>
  9. <modelVersion>4.0.0</modelVersion>
  10. <artifactId>service-qzh-api</artifactId>
  11. <dependencies>
  12. <dependency>
  13. <groupId>io.github.openfeign</groupId>
  14. <artifactId>feign-httpclient</artifactId>
  15. </dependency>
  16. <dependency>
  17. <groupId>org.springframework.cloud</groupId>
  18. <artifactId>spring-cloud-starter-openfeign</artifactId>
  19. <exclusions>
  20. <exclusion>
  21. <artifactId>jsr305</artifactId>
  22. <groupId>com.google.code.findbugs</groupId>
  23. </exclusion>
  24. </exclusions>
  25. </dependency>
  26. <dependency>
  27. <groupId>org.projectlombok</groupId>
  28. <artifactId>lombok</artifactId>
  29. </dependency>
  30. <!-- Swagger -->
  31. <dependency>
  32. <groupId>io.swagger</groupId>
  33. <artifactId>swagger-annotations</artifactId>
  34. </dependency>
  35. <dependency>
  36. <groupId>com.crunii.microservice</groupId>
  37. <artifactId>micro-core</artifactId>
  38. </dependency>
  39. </dependencies>
  40. <build>
  41. <plugins>
  42. <!-- 跳过parent的打包插件 -->
  43. <plugin>
  44. <groupId>org.springframework.boot</groupId>
  45. <artifactId>spring-boot-maven-plugin</artifactId>
  46. <configuration>
  47. <skip>true</skip>
  48. </configuration>
  49. </plugin>
  50. </plugins>
  51. </build>
  52. </project>