pom.xml 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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. <modelVersion>4.0.0</modelVersion>
  6. <groupId>com.gis</groupId>
  7. <artifactId>720yun_fd_consumer</artifactId>
  8. <packaging>jar</packaging>
  9. <version>1.0.0</version>
  10. <parent>
  11. <groupId>com.gis</groupId>
  12. <artifactId>720yun_fd</artifactId>
  13. <version>1.0.0</version>
  14. </parent>
  15. <dependencies>
  16. <dependency>
  17. <groupId>com.gis</groupId>
  18. <artifactId>gis_domain</artifactId>
  19. <exclusions>
  20. <exclusion>
  21. <artifactId>javacv-platform</artifactId>
  22. <groupId>org.bytedeco</groupId>
  23. </exclusion>
  24. <exclusion>
  25. <artifactId>javacv</artifactId>
  26. <groupId>org.bytedeco</groupId>
  27. </exclusion>
  28. </exclusions>
  29. </dependency>
  30. <dependency>
  31. <groupId>com.gis</groupId>
  32. <artifactId>gis_service</artifactId>
  33. </dependency>
  34. <dependency>
  35. <groupId>com.gis</groupId>
  36. <artifactId>gis_mapper</artifactId>
  37. </dependency>
  38. <dependency>
  39. <groupId>com.gis</groupId>
  40. <artifactId>gis_oss</artifactId>
  41. </dependency>
  42. </dependencies>
  43. <build>
  44. <plugins>
  45. <plugin>
  46. <groupId>org.springframework.boot</groupId>
  47. <artifactId>spring-boot-maven-plugin</artifactId>
  48. </plugin>
  49. </plugins>
  50. <finalName>720yun_fd_consumer</finalName>
  51. </build>
  52. </project>