2021-02-23 02:41:52 +01:00
|
|
|
<?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">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<groupId>org.example</groupId>
|
|
|
|
<artifactId>LEDControl</artifactId>
|
|
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
<maven.compiler.source>15</maven.compiler.source>
|
|
|
|
<maven.compiler.target>15</maven.compiler.target>
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.fazecast</groupId>
|
|
|
|
<artifactId>jSerialComm</artifactId>
|
|
|
|
<version>[2.0.0,3.0.0)</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2021-03-14 17:07:42 +01:00
|
|
|
<groupId>com.github.oshi</groupId>
|
|
|
|
<artifactId>oshi-core</artifactId>
|
|
|
|
<version>5.5.1</version>
|
2021-02-23 02:41:52 +01:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.tagtraum</groupId>
|
|
|
|
<artifactId>jipes</artifactId>
|
|
|
|
<version>0.9.17</version>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</project>
|