pom.xml 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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>wuye-third</artifactId>
  7. <groupId>com.cyzh</groupId>
  8. <version>1.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>wuye-third-api</artifactId>
  12. <packaging>jar</packaging>
  13. <description>第三方对接推送模块</description>
  14. <dependencies>
  15. <dependency>
  16. <groupId>com.cyzh</groupId>
  17. <artifactId>wuye-common-core</artifactId>
  18. <version>${project.version}</version>
  19. </dependency>
  20. <dependency>
  21. <groupId>com.cyzh</groupId>
  22. <artifactId>wuye-estate-api</artifactId>
  23. <version>${project.version}</version>
  24. </dependency>
  25. <dependency>
  26. <groupId>com.cyzh</groupId>
  27. <artifactId>wuye-iot-api</artifactId>
  28. <version>${project.version}</version>
  29. </dependency>
  30. <dependency>
  31. <groupId>com.cyzh</groupId>
  32. <artifactId>wuye-video-cloud-api</artifactId>
  33. <version>${project.version}</version>
  34. </dependency>
  35. <!-- FastDfs 客户端 -->
  36. <dependency>
  37. <groupId>com.github.tobato</groupId>
  38. <artifactId>fastdfs-client</artifactId>
  39. <version>1.26.3</version>
  40. </dependency>
  41. <!-- ===================================== Or JAR ===================================== -->
  42. <!-- Lombok -->
  43. <dependency>
  44. <groupId>org.projectlombok</groupId>
  45. <artifactId>lombok</artifactId>
  46. </dependency>
  47. </dependencies>
  48. </project>