12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- <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">
- <modelVersion>4.0.0</modelVersion>
- <groupId>com.sunwin.device.general</groupId>
- <artifactId>device-general</artifactId>
- <version>0.0.1-SNAPSHOT</version>
- <description>device general project</description>
- <properties>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
- <!-- <project.basedir>D:\java\git\device-general</project.basedir>-->
- <java.version>1.8</java.version>
- <skipTests>true</skipTests>
- </properties>
- <dependencies>
-
- <!-- 海康sdk依赖的jna -->
- <dependency>
- <groupId>com.sunwin.gnu.io</groupId>
- <artifactId>jna</artifactId>
- <version>1.0-system</version>
- <scope>system</scope>
- <systemPath>${project.basedir}/lib/jna.jar</systemPath>
- </dependency>
- <dependency>
- <groupId>com.sunwin.gnu.io</groupId>
- <artifactId>examples</artifactId>
- <version>1.0-system</version>
- <scope>system</scope>
- <systemPath>${project.basedir}/lib/examples.jar</systemPath>
- </dependency>
- <!-- log -->
- <dependency>
- <groupId>commons-logging</groupId>
- <artifactId>commons-logging</artifactId>
- <version>1.2</version>
- </dependency>
- <dependency>
- <groupId>commons-lang</groupId>
- <artifactId>commons-lang</artifactId>
- <version>2.6</version>
- </dependency>
- <dependency>
- <groupId>org.slf4j</groupId>
- <artifactId>slf4j-api</artifactId>
- <version>1.7.32</version>
- </dependency>
- </dependencies>
- <build>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-compiler-plugin</artifactId>
- <configuration>
- <source>1.8</source>
- <target>1.8</target>
- </configuration>
- </plugin>
- </plugins>
- </build>
- </project>
|