pom.xml 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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>taphole-java</artifactId>
  7. <groupId>com.sckj</groupId>
  8. <version>1.0.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>taphole-camera</artifactId>
  12. <description>
  13. 摄像头模块
  14. </description>
  15. <!-- 项目管理 -->
  16. <dependencies>
  17. <!-- 公共依赖 -->
  18. <dependency>
  19. <groupId>com.sckj</groupId>
  20. <artifactId>taphole-common</artifactId>
  21. </dependency>
  22. <dependency>
  23. <groupId>cc.eguid</groupId>
  24. <artifactId>FFmpegCommandManager</artifactId>
  25. <version>1.0.0</version>
  26. <scope>system</scope>
  27. <systemPath>${project.basedir}/src/main/resources/jar/FFmpegCommandHandler.jar</systemPath>
  28. </dependency>
  29. <dependency>
  30. <groupId>com.sun.jna</groupId>
  31. <artifactId>jna</artifactId>
  32. <version>1.7.0</version>
  33. <scope>system</scope>
  34. <systemPath>${project.basedir}/src/main/resources/jar/jna.jar</systemPath>
  35. </dependency>
  36. <dependency>
  37. <groupId>com.sun.jna.examples</groupId>
  38. <artifactId>jna</artifactId>
  39. <version>1.7.1</version>
  40. <scope>system</scope>
  41. <systemPath>${project.basedir}/src/main/resources/jar/examples.jar</systemPath>
  42. </dependency>
  43. </dependencies>
  44. </project>