pom.xml 1.9 KB

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