You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

61 regels
2.1 KiB

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <groupId>com.yzx.hardware-access</groupId>
  7. <artifactId>hardware-access</artifactId>
  8. <version>1.0.0</version>
  9. <properties>
  10. <maven.compiler.source>8</maven.compiler.source>
  11. <maven.compiler.target>8</maven.compiler.target>
  12. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  13. </properties>
  14. <dependencies>
  15. <dependency>
  16. <groupId>com.sun.jna</groupId>
  17. <artifactId>examples</artifactId>
  18. <version>1.0.0</version>
  19. </dependency>
  20. <dependency>
  21. <groupId>com.hikvision</groupId>
  22. <artifactId>netsdk</artifactId>
  23. <version>1.0.0</version>
  24. </dependency>
  25. <dependency>
  26. <groupId>com.sun.jna</groupId>
  27. <artifactId>jna</artifactId>
  28. <version>1.0.0</version>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.projectlombok</groupId>
  32. <artifactId>lombok</artifactId>
  33. <version>1.18.22</version>
  34. <optional>true</optional>
  35. </dependency>
  36. <dependency>
  37. <groupId>com.alibaba</groupId>
  38. <artifactId>fastjson</artifactId>
  39. <version>1.2.7</version>
  40. </dependency>
  41. </dependencies>
  42. <build>
  43. <plugins>
  44. <plugin>
  45. <artifactId>maven-assembly-plugin</artifactId>
  46. <configuration>
  47. <archive>
  48. <manifest>
  49. <mainClass>com.yzx.Main</mainClass>
  50. </manifest>
  51. </archive>
  52. <descriptorRefs>
  53. <descriptorRef>jar-with-dependencies</descriptorRef>
  54. </descriptorRefs>
  55. </configuration>
  56. </plugin>
  57. </plugins>
  58. </build>
  59. </project>