pom.xml 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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>eu.tankernn.camsucks</groupId>
  5. <artifactId>CamSucks</artifactId>
  6. <version>0.0.1</version>
  7. <name>CAM Sucks</name>
  8. <description>An alternative app for controlling the NZXT GRID+.</description>
  9. <dependencies>
  10. <dependency>
  11. <groupId>com.fazecast</groupId>
  12. <artifactId>jSerialComm</artifactId>
  13. <version>1.3.11</version>
  14. </dependency>
  15. <!-- https://mvnrepository.com/artifact/org.snmp4j/snmp4j -->
  16. <dependency>
  17. <groupId>org.snmp4j</groupId>
  18. <artifactId>snmp4j</artifactId>
  19. <version>2.5.5</version>
  20. </dependency>
  21. </dependencies>
  22. <build>
  23. <sourceDirectory>src</sourceDirectory>
  24. <resources>
  25. <resource>
  26. <directory>src</directory>
  27. <excludes>
  28. <exclude>**/*.java</exclude>
  29. </excludes>
  30. </resource>
  31. </resources>
  32. <plugins>
  33. <plugin>
  34. <artifactId>maven-compiler-plugin</artifactId>
  35. <version>3.6.1</version>
  36. <configuration>
  37. <source>1.8</source>
  38. <target>1.8</target>
  39. </configuration>
  40. </plugin>
  41. </plugins>
  42. </build>
  43. </project>