62 lines
2.4 KiB
XML
62 lines
2.4 KiB
XML
|
<?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>java</groupId>
|
||
|
<artifactId>syski_monitor_java</artifactId>
|
||
|
<version>1.0-SNAPSHOT</version>
|
||
|
<packaging>jar</packaging>
|
||
|
<properties>
|
||
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||
|
<maven.compiler.source>1.8</maven.compiler.source>
|
||
|
<maven.compiler.target>1.8</maven.compiler.target>
|
||
|
</properties>
|
||
|
<!-- https://mvnrepository.com/artifact/org.ini4j/ini4j -->
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>org.ini4j</groupId>
|
||
|
<artifactId>ini4j</artifactId>
|
||
|
<version>0.5.1</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.neovisionaries</groupId>
|
||
|
<artifactId>nv-websocket-client</artifactId>
|
||
|
<version>2.6</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.eclipsesource.minimal-json</groupId>
|
||
|
<artifactId>minimal-json</artifactId>
|
||
|
<version>0.9.5</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.github.oshi</groupId>
|
||
|
<artifactId>oshi-core</artifactId>
|
||
|
<version>3.13.0</version>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
<build>
|
||
|
<plugins>
|
||
|
<plugin>
|
||
|
<artifactId>maven-assembly-plugin</artifactId>
|
||
|
<configuration>
|
||
|
<archive>
|
||
|
<manifest>
|
||
|
<mainClass>uk.co.syski.client.Main</mainClass>
|
||
|
</manifest>
|
||
|
</archive>
|
||
|
<descriptorRefs>
|
||
|
<descriptorRef>jar-with-dependencies</descriptorRef>
|
||
|
</descriptorRefs>
|
||
|
</configuration>
|
||
|
<executions>
|
||
|
<execution>
|
||
|
<id>make-assembly</id>
|
||
|
<phase>package</phase>
|
||
|
<goals>
|
||
|
<goal>single</goal>
|
||
|
</goals>
|
||
|
</execution>
|
||
|
</executions>
|
||
|
</plugin>
|
||
|
</plugins>
|
||
|
</build>
|
||
|
</project>
|