1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- <?xml version="1.0" encoding="UTF-8"?>
- <project xmlns="http://maven.apache.org/POM/4.0.0"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
- <parent>
- <artifactId>taphole-java</artifactId>
- <groupId>com.sckj</groupId>
- <version>1.0.0</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <artifactId>taphole-camera</artifactId>
- <description>
- 摄像头模块
- </description>
- <!-- 项目管理 -->
- <dependencies>
- <!-- 公共依赖 -->
- <dependency>
- <groupId>com.sckj</groupId>
- <artifactId>taphole-common</artifactId>
- </dependency>
- <dependency>
- <groupId>cc.eguid</groupId>
- <artifactId>FFmpegCommandManager</artifactId>
- <version>1.0.0</version>
- <scope>system</scope>
- <systemPath>${project.basedir}/src/main/resources/jar/FFmpegCommandHandler.jar</systemPath>
- </dependency>
- <dependency>
- <groupId>com.sun.jna</groupId>
- <artifactId>jna</artifactId>
- <version>1.7.0</version>
- <scope>system</scope>
- <systemPath>${project.basedir}/src/main/resources/jar/jna.jar</systemPath>
- </dependency>
- <dependency>
- <groupId>com.sun.jna.examples</groupId>
- <artifactId>jna</artifactId>
- <version>1.7.1</version>
- <scope>system</scope>
- <systemPath>${project.basedir}/src/main/resources/jar/examples.jar</systemPath>
- </dependency>
- </dependencies>
- </project>
|