pom.xml 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <groupId>com.sunwin.device.general</groupId>
  5. <artifactId>device-general</artifactId>
  6. <version>0.0.1-SNAPSHOT</version>
  7. <description>device general project</description>
  8. <properties>
  9. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  10. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  11. <!-- <project.basedir>D:\java\git\device-general</project.basedir>-->
  12. <java.version>1.8</java.version>
  13. <skipTests>true</skipTests>
  14. </properties>
  15. <dependencies>
  16. <!-- 海康sdk依赖的jna -->
  17. <dependency>
  18. <groupId>com.sunwin.gnu.io</groupId>
  19. <artifactId>jna</artifactId>
  20. <version>1.0-system</version>
  21. <scope>system</scope>
  22. <systemPath>${project.basedir}/lib/jna.jar</systemPath>
  23. </dependency>
  24. <dependency>
  25. <groupId>com.sunwin.gnu.io</groupId>
  26. <artifactId>examples</artifactId>
  27. <version>1.0-system</version>
  28. <scope>system</scope>
  29. <systemPath>${project.basedir}/lib/examples.jar</systemPath>
  30. </dependency>
  31. <!-- log -->
  32. <dependency>
  33. <groupId>commons-logging</groupId>
  34. <artifactId>commons-logging</artifactId>
  35. <version>1.2</version>
  36. </dependency>
  37. <dependency>
  38. <groupId>commons-lang</groupId>
  39. <artifactId>commons-lang</artifactId>
  40. <version>2.6</version>
  41. </dependency>
  42. <dependency>
  43. <groupId>org.slf4j</groupId>
  44. <artifactId>slf4j-api</artifactId>
  45. <version>1.7.32</version>
  46. </dependency>
  47. </dependencies>
  48. <build>
  49. <plugins>
  50. <plugin>
  51. <groupId>org.apache.maven.plugins</groupId>
  52. <artifactId>maven-compiler-plugin</artifactId>
  53. <configuration>
  54. <source>1.8</source>
  55. <target>1.8</target>
  56. </configuration>
  57. </plugin>
  58. </plugins>
  59. </build>
  60. </project>