Upload pom.xml via GUI
This commit is contained in:
33
pom.xml
33
pom.xml
@@ -19,8 +19,26 @@
|
||||
<maven.compiler.target>17</maven.compiler.target>
|
||||
</properties>
|
||||
|
||||
<repositories>
|
||||
<!-- Spigot Repository -->
|
||||
<repository>
|
||||
<id>spigot-repo</id>
|
||||
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
|
||||
</repository>
|
||||
|
||||
<!-- Opencollab Repository (Für GeyserMC / Floodgate) -->
|
||||
<repository>
|
||||
<id>opencollab-snapshot</id>
|
||||
<url>https://repo.opencollab.dev/maven-snapshots/</url>
|
||||
</repository>
|
||||
<repository>
|
||||
<id>opencollab-releases</id>
|
||||
<url>https://repo.opencollab.dev/maven-releases/</url>
|
||||
</repository>
|
||||
</repositories>
|
||||
|
||||
<dependencies>
|
||||
<!-- Telegram Bots -->
|
||||
<!-- Telegram Bots API -->
|
||||
<dependency>
|
||||
<groupId>org.telegram</groupId>
|
||||
<artifactId>telegrambots</artifactId>
|
||||
@@ -31,7 +49,15 @@
|
||||
<dependency>
|
||||
<groupId>org.spigotmc</groupId>
|
||||
<artifactId>spigot-api</artifactId>
|
||||
<version>1.21.5-R0.1-SNAPSHOT</version>
|
||||
<version>1.21.1-R0.1-SNAPSHOT</version>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
|
||||
<!-- Floodgate API für Bedrock-Support -->
|
||||
<dependency>
|
||||
<groupId>org.geysermc.floodgate</groupId>
|
||||
<artifactId>api</artifactId>
|
||||
<version>2.2.2-SNAPSHOT</version>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
@@ -48,7 +74,7 @@
|
||||
</configuration>
|
||||
</plugin>
|
||||
|
||||
<!-- Shade Plugin: packt Telegram-Bibliothek in die JAR -->
|
||||
<!-- Shade Plugin: Packt externe Bibliotheken in die JAR -->
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-shade-plugin</artifactId>
|
||||
@@ -60,6 +86,7 @@
|
||||
<configuration>
|
||||
<minimizeJar>true</minimizeJar>
|
||||
<relocations>
|
||||
<!-- Verschiebt die Telegram-Lib, damit es keine Konflikte gibt -->
|
||||
<relocation>
|
||||
<pattern>org.telegram</pattern>
|
||||
<shadedPattern>dev.viper.shaded.telegram</shadedPattern>
|
||||
|
||||
Reference in New Issue
Block a user