<?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> <properties> <maven.compiler.source>1.10</maven.compiler.source> <maven.compiler.target>1.10</maven.compiler.target> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <groupId>at.overflow.bukkit.matrixbridge</groupId> <artifactId>matrixbridge</artifactId> <version>1.0-SNAPSHOT</version> <repositories> <repository> <id>papermc</id> <url>https://papermc.io/repo/repository/maven-public/</url> </repository> <repository> <id>kamax-io</id> <name>kamax-io</name> <url>https://kamax.io/maven/releases/</url> </repository> </repositories> <dependencies> <dependency> <groupId>io.papermc.paper</groupId> <artifactId>paper-api</artifactId> <version>1.18-R0.1-SNAPSHOT</version> <scope>provided</scope> </dependency> <dependency> <groupId>io.kamax</groupId> <artifactId>matrix-java-sdk</artifactId> <version>0.0.18</version> </dependency> </dependencies> <build> <plugins> <!-- any other plugins --> <plugin> <artifactId>maven-assembly-plugin</artifactId> <executions> <execution> <phase>package</phase> <goals> <goal>single</goal> </goals> </execution> </executions> <configuration> <descriptorRefs> <descriptorRef>jar-with-dependencies</descriptorRef> </descriptorRefs> </configuration> </plugin> </plugins> </build> </project>