12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- <?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-iron</artifactId>
- <name>taphole-iron 出铁模块</name>
- <properties>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- <maven.compiler.source>8</maven.compiler.source>
- <maven.compiler.target>8</maven.compiler.target>
- </properties>
- <!-- 项目管理 -->
- <dependencies>
- <!-- 公共依赖 -->
- <dependency>
- <groupId>com.sckj</groupId>
- <artifactId>taphole-common</artifactId>
- </dependency>
- <dependency>
- <groupId>com.sckj</groupId>
- <artifactId>taphole-opc</artifactId>
- </dependency>
- <dependency>
- <groupId>com.sckj</groupId>
- <artifactId>taphole-warn</artifactId>
- </dependency>
- <dependency>
- <groupId>com.sckj</groupId>
- <artifactId>taphole-device</artifactId>
- </dependency>
- <dependency>
- <groupId>com.sckj</groupId>
- <artifactId>taphole-l2</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>
|