pom.xml 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <parent>
  5. <artifactId>taphole-java</artifactId>
  6. <groupId>com.sckj</groupId>
  7. <version>1.0.0</version>
  8. </parent>
  9. <modelVersion>4.0.0</modelVersion>
  10. <artifactId>taphole-iron</artifactId>
  11. <name>taphole-iron 出铁模块</name>
  12. <properties>
  13. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  14. <maven.compiler.source>8</maven.compiler.source>
  15. <maven.compiler.target>8</maven.compiler.target>
  16. </properties>
  17. <!-- 项目管理 -->
  18. <dependencies>
  19. <!-- 公共依赖 -->
  20. <dependency>
  21. <groupId>com.sckj</groupId>
  22. <artifactId>taphole-common</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>com.sckj</groupId>
  26. <artifactId>taphole-opc</artifactId>
  27. </dependency>
  28. <dependency>
  29. <groupId>com.sckj</groupId>
  30. <artifactId>taphole-warn</artifactId>
  31. </dependency>
  32. <dependency>
  33. <groupId>com.sckj</groupId>
  34. <artifactId>taphole-device</artifactId>
  35. </dependency>
  36. <dependency>
  37. <groupId>com.sckj</groupId>
  38. <artifactId>taphole-l2</artifactId>
  39. </dependency>
  40. <!-- <dependency>-->
  41. <!-- <groupId>cc.eguid</groupId>-->
  42. <!-- <artifactId>FFmpegCommandManager</artifactId>-->
  43. <!-- <version>1.0.0</version>-->
  44. <!-- <scope>system</scope>-->
  45. <!-- <systemPath>${project.basedir}/src/main/resources/jar/FFmpegCommandHandler.jar</systemPath>-->
  46. <!-- </dependency>-->
  47. <dependency>
  48. <groupId>com.sun.jna</groupId>
  49. <artifactId>jna</artifactId>
  50. <version>1.7.0</version>
  51. <scope>system</scope>
  52. <systemPath>${project.basedir}/src/main/resources/jar/jna.jar</systemPath>
  53. </dependency>
  54. <dependency>
  55. <groupId>com.sun.jna.examples</groupId>
  56. <artifactId>jna</artifactId>
  57. <version>1.7.1</version>
  58. <scope>system</scope>
  59. <systemPath>${project.basedir}/src/main/resources/jar/examples.jar</systemPath>
  60. </dependency>
  61. </dependencies>
  62. </project>