minecraft-matrix-bridge/pom.xml

66 lines
2.1 KiB
XML
Raw Normal View History

2019-07-15 21:45:28 +00: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>
<properties>
<maven.compiler.source>1.10</maven.compiler.source>
<maven.compiler.target>1.10</maven.compiler.target>
2022-01-04 17:39:40 +00:00
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
2019-07-15 21:45:28 +00:00
</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>
2022-01-04 17:39:40 +00:00
<groupId>io.papermc.paper</groupId>
2019-07-15 21:45:28 +00:00
<artifactId>paper-api</artifactId>
2022-01-04 17:39:40 +00:00
<version>1.18-R0.1-SNAPSHOT</version>
2019-07-15 21:45:28 +00:00
<scope>provided</scope>
</dependency>
<dependency>
<groupId>io.kamax</groupId>
<artifactId>matrix-java-sdk</artifactId>
2022-01-04 17:39:40 +00:00
<version>0.0.18</version>
2019-07-15 21:45:28 +00:00
</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>
2022-01-04 17:39:40 +00:00
</project>