test
parent
b3520a1687
commit
2bb77c6eab
|
@ -1,99 +1,100 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
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">
|
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>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
|
|
||||||
<groupId>net.krakatoa.lobbysystem</groupId>
|
<groupId>net.krakatoa.lobbysystem</groupId>
|
||||||
<artifactId>KraLobbySystem</artifactId>
|
<artifactId>KraLobbySystem</artifactId>
|
||||||
<version>1.0-SNAPSHOT</version>
|
<version>1.0-SNAPSHOT</version>
|
||||||
|
|
||||||
<properties>
|
<properties>
|
||||||
<maven.compiler.source>14</maven.compiler.source>
|
<maven.compiler.source>14</maven.compiler.source>
|
||||||
<maven.compiler.target>14</maven.compiler.target>
|
<maven.compiler.target>14</maven.compiler.target>
|
||||||
</properties>
|
</properties>
|
||||||
|
|
||||||
<build>
|
<build>
|
||||||
<defaultGoal>clean install</defaultGoal>
|
<defaultGoal>clean install</defaultGoal>
|
||||||
<plugins>
|
<plugins>
|
||||||
<plugin>
|
<plugin>
|
||||||
<artifactId>maven-assembly-plugin</artifactId>
|
<artifactId>maven-assembly-plugin</artifactId>
|
||||||
<configuration>
|
<configuration>
|
||||||
<descriptorRefs>
|
<descriptorRefs>
|
||||||
<descriptorRef>jar-with-dependencies</descriptorRef>
|
<descriptorRef>jar-with-dependencies</descriptorRef>
|
||||||
</descriptorRefs>
|
</descriptorRefs>
|
||||||
</configuration>
|
</configuration>
|
||||||
<executions>
|
<executions>
|
||||||
<execution>
|
<execution>
|
||||||
<goals>
|
<goals>
|
||||||
<goal>single</goal>
|
<goal>single</goal>
|
||||||
</goals>
|
</goals>
|
||||||
<id>make-assembly</id>
|
<id>make-assembly</id>
|
||||||
<phase>package</phase>
|
<phase>package</phase>
|
||||||
</execution>
|
</execution>
|
||||||
</executions>
|
</executions>
|
||||||
</plugin>
|
</plugin>
|
||||||
<plugin>
|
<plugin>
|
||||||
<artifactId>maven-compiler-plugin</artifactId>
|
<artifactId>maven-compiler-plugin</artifactId>
|
||||||
<configuration>
|
<configuration>
|
||||||
<source>9</source>
|
<source>9</source>
|
||||||
<target>9</target>
|
<target>9</target>
|
||||||
</configuration>
|
</configuration>
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
</plugin>
|
</plugin>
|
||||||
</plugins>
|
</plugins>
|
||||||
</build>
|
</build>
|
||||||
|
|
||||||
<dependencies>
|
<dependencies>
|
||||||
<dependency>
|
<dependency>
|
||||||
<artifactId>spigot-api</artifactId>
|
<artifactId>spigot-api</artifactId>
|
||||||
<groupId>org.spigotmc</groupId>
|
<groupId>org.spigotmc</groupId>
|
||||||
<scope>provided</scope>
|
<scope>provided</scope>
|
||||||
<version>1.18-R0.1-SNAPSHOT</version>
|
<version>1.18-R0.1-SNAPSHOT</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<artifactId>lombok</artifactId>
|
<artifactId>lombok</artifactId>
|
||||||
<groupId>org.projectlombok</groupId>
|
<groupId>org.projectlombok</groupId>
|
||||||
<scope>provided</scope>
|
<scope>provided</scope>
|
||||||
<version>1.18.22</version>
|
<version>1.18.22</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<artifactId>mongodb-driver-async</artifactId>
|
<artifactId>mongodb-driver-async</artifactId>
|
||||||
<groupId>org.mongodb</groupId>
|
<groupId>org.mongodb</groupId>
|
||||||
<version>3.12.10</version>
|
<version>3.12.10</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>net.krakatoaapi</groupId>
|
<groupId>net.krakatoaapi</groupId>
|
||||||
<artifactId>KrakatoaAPI</artifactId>
|
<artifactId>KrakatoaAPI</artifactId>
|
||||||
<version>1.0-SNAPSHOT</version>
|
<version>1.0-SNAPSHOT</version>
|
||||||
</dependency>
|
<scope>provided</scope>
|
||||||
<!-- <dependency>
|
</dependency>
|
||||||
<groupId>earth.krakatoa</groupId>
|
<!-- <dependency>
|
||||||
<artifactId>test</artifactId>
|
<groupId>earth.krakatoa</groupId>
|
||||||
<version>1.0</version>
|
<artifactId>test</artifactId>
|
||||||
<scope>system</scope>
|
<version>1.0</version>
|
||||||
<systemPath>
|
<scope>system</scope>
|
||||||
/home/alex/IdeaProjects/KraSocketClient/target/KraSocketClient-1.0-SNAPSHOT-jar-with-dependencies.jar
|
<systemPath>
|
||||||
</systemPath>
|
/home/alex/IdeaProjects/KraSocketClient/target/KraSocketClient-1.0-SNAPSHOT-jar-with-dependencies.jar
|
||||||
</dependency> -->
|
</systemPath>
|
||||||
</dependencies>
|
</dependency> -->
|
||||||
|
</dependencies>
|
||||||
|
|
||||||
<repositories>
|
<repositories>
|
||||||
<!-- This adds the Spigot Maven repository to the build -->
|
<!-- This adds the Spigot Maven repository to the build -->
|
||||||
<repository>
|
<repository>
|
||||||
<id>spigot-repo</id>
|
<id>spigot-repo</id>
|
||||||
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
|
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
|
||||||
</repository>
|
</repository>
|
||||||
<repository>
|
<repository>
|
||||||
<id>krakatoa-earth</id>
|
<id>krakatoa-earth</id>
|
||||||
<name>Krakatoa Repository</name>
|
<name>Krakatoa Repository</name>
|
||||||
<url>https://repo.krakatoa.umbach.dev/repository/krakatoa-earth/</url>
|
<url>https://repo.krakatoa.umbach.dev/repository/krakatoa-earth/</url>
|
||||||
<releases>
|
<releases>
|
||||||
<enabled>true</enabled>
|
<enabled>true</enabled>
|
||||||
</releases>
|
</releases>
|
||||||
<snapshots>
|
<snapshots>
|
||||||
<enabled>true</enabled>
|
<enabled>true</enabled>
|
||||||
</snapshots>
|
</snapshots>
|
||||||
</repository>
|
</repository>
|
||||||
</repositories>
|
</repositories>
|
||||||
</project>
|
</project>
|
0
src/main/java/net/krakatoa/lobbysystem/listener/PlayerJoinListener.java
Normal file → Executable file
0
src/main/java/net/krakatoa/lobbysystem/listener/PlayerJoinListener.java
Normal file → Executable file
0
src/main/java/net/krakatoa/lobbysystem/listener/SocketMessageListener.java
Normal file → Executable file
0
src/main/java/net/krakatoa/lobbysystem/listener/SocketMessageListener.java
Normal file → Executable file
0
target/classes/net/krakatoa/lobbysystem/listener/PlayerJoinListener.class
Normal file → Executable file
0
target/classes/net/krakatoa/lobbysystem/listener/PlayerJoinListener.class
Normal file → Executable file
0
target/classes/net/krakatoa/lobbysystem/listener/SocketMessageListener.class
Normal file → Executable file
0
target/classes/net/krakatoa/lobbysystem/listener/SocketMessageListener.class
Normal file → Executable file
0
target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst
Normal file → Executable file
0
target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst
Normal file → Executable file
0
target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst
Normal file → Executable file
0
target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst
Normal file → Executable file
0
target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst
Normal file → Executable file
0
target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst
Normal file → Executable file
Loading…
Reference in New Issue