nitrowebsockets-for-ms/pom.xml

30 lines
1010 B
XML
Raw Normal View History

2020-10-08 01:03:13 +02: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.krews.nitro</groupId>
<artifactId>NitroWebsockets</artifactId>
<version>1.0-SNAPSHOT</version>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
2020-10-15 09:19:32 +02:00
<source>8</source>
<target>8</target>
2020-10-08 01:03:13 +02:00
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>com.eu.habbo</groupId>
<artifactId>Habbo</artifactId>
2020-10-15 09:19:32 +02:00
<version>2.5.0</version>
2020-10-08 01:03:13 +02:00
</dependency>
</dependencies>
</project>