Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?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>com.bluenova</groupId>
- <artifactId>FloorIsLava</artifactId>
- <version>1.0.5</version>
- <packaging>jar</packaging>
- <name>FloorIsLava</name>
- <description>
- You and your friends are trapped in a world where lava will rise till only one survives! Who will it be?
- </description>
- <properties>
- <java.version>21</java.version>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- </properties>
- <build>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-jar-plugin</artifactId>
- <configuration>
- <outputDirectory>C:\Users\gamer\IdeaProjects\Floor_is_Lava\server\plugins</outputDirectory>
- </configuration>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-shade-plugin</artifactId>
- <version>3.2.4</version>
- <executions>
- <execution>
- <phase>package</phase>
- <goals>
- <goal>shade</goal>
- </goals>
- <configuration>
- <createDependencyReducedPom>false</createDependencyReducedPom>
- <relocations>
- <relocation>
- <pattern>org.json.simple</pattern>
- <shadedPattern>com.bluenova.floorislava.libs.jsonsimple</shadedPattern>
- </relocation>
- <relocation>
- <pattern>net.kyori.adventure</pattern>
- <shadedPattern>com.bluenova.floorislava.libs.adventure</shadedPattern>
- </relocation>
- </relocations>
- </configuration>
- </execution>
- </executions>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-compiler-plugin</artifactId>
- <configuration>
- <source>14</source>
- <target>14</target>
- </configuration>
- </plugin>
- </plugins>
- <resources>
- <resource>
- <directory>src/main/resources</directory>
- <filtering>true</filtering>
- </resource>
- </resources>
- </build>
- <repositories>
- <repository>
- <id>papermc</id>
- <url>https://repo.papermc.io/repository/maven-public/</url>
- </repository>
- <repository>
- <id>spigot-repo</id>
- <url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
- </repository>
- <repository>
- <id>enginehub-maven</id>
- <url>https://maven.enginehub.org/repo/</url>
- </repository>
- <repository>
- <id>OnARandomBox</id>
- <url>https://repo.onarandombox.com/content/groups/public/</url>
- </repository>
- <repository>
- <id>aikar</id>
- <url>https://repo.aikar.co/content/groups/aikar/</url>
- </repository>
- <repository>
- <id>sk89q-repo</id>
- <url>https://maven.enginehub.org/repo/</url>
- </repository>
- </repositories>
- <dependencyManagement>
- <dependencies>
- <dependency>
- <groupId>com.intellectualsites.bom</groupId>
- <artifactId>bom-newest</artifactId> <!-- Ref: https://github.com/IntellectualSites/bom -->
- <version>1.52</version>
- <scope>import</scope>
- <type>pom</type>
- </dependency>
- </dependencies>
- </dependencyManagement>
- <dependencies>
- <dependency>
- <groupId>org.spigotmc</groupId>
- <artifactId>spigot-api</artifactId>
- <version>1.21.5-R0.1-SNAPSHOT</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>com.googlecode.json-simple</groupId>
- <artifactId>json-simple</artifactId>
- <version>1.1.1</version>
- </dependency>
- <dependency>
- <groupId>com.sk89q.worldedit</groupId>
- <artifactId>worldedit-core</artifactId>
- <version>7.2.0-SNAPSHOT</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>com.sk89q.worldedit</groupId>
- <artifactId>worldedit-bukkit</artifactId>
- <version>7.3.4</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>com.fastasyncworldedit</groupId>
- <artifactId>FastAsyncWorldEdit-Core</artifactId>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>com.fastasyncworldedit</groupId>
- <artifactId>FastAsyncWorldEdit-Bukkit</artifactId>
- <scope>provided</scope>
- <exclusions>
- <exclusion>
- <artifactId>FastAsyncWorldEdit-Core</artifactId>
- <groupId>*</groupId>
- </exclusion>
- </exclusions>
- </dependency>
- <dependency>
- <groupId>com.sk89q.worldguard</groupId>
- <artifactId>worldguard-bukkit</artifactId>
- <version>7.0.13</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>com.onarandombox.multiversecore</groupId>
- <artifactId>Multiverse-Core</artifactId>
- <version>4.3.1</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>net.kyori</groupId>
- <artifactId>adventure-api</artifactId>
- <version>4.20.0</version>
- <scope>compile</scope>
- </dependency>
- <dependency>
- <groupId>net.kyori</groupId>
- <artifactId>adventure-platform-bukkit</artifactId>
- <version>4.3.4</version>
- <scope>compile</scope>
- </dependency>
- <dependency>
- <groupId>net.kyori</groupId>
- <artifactId>adventure-text-minimessage</artifactId>
- <version>4.20.0</version>
- </dependency>
- </dependencies>
- </project>
Advertisement
Add Comment
Please, Sign In to add comment