123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136 |
- <?xml version="1.0" encoding="UTF-8"?>
- <!--
- ~ This file is part of MissileWars (https://github.com/Butzlabben/missilewars).
- ~ Copyright (c) 2018-2021 Daniel Nägele.
- ~
- ~ MissileWars is free software: you can redistribute it and/or modify
- ~ it under the terms of the GNU General Public License as published by
- ~ the Free Software Foundation, either version 3 of the License, or
- ~ (at your option) any later version.
- ~
- ~ MissileWars is distributed in the hope that it will be useful,
- ~ but WITHOUT ANY WARRANTY; without even the implied warranty of
- ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- ~ GNU General Public License for more details.
- ~
- ~ You should have received a copy of the GNU General Public License
- ~ along with MissileWars. If not, see <https://www.gnu.org/licenses/>.
- -->
- <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xmlns="http://maven.apache.org/POM/4.0.0"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
- <parent>
- <artifactId>missilewars</artifactId>
- <groupId>de.butzlabben</groupId>
- <version>1.0</version>
- </parent>
- <version>5.0.0-rc.1</version>
- <modelVersion>4.0.0</modelVersion>
- <artifactId>missilewars-plugin</artifactId>
- <repositories>
- <repository>
- <id>aikar</id>
- <url>https://repo.aikar.co/content/groups/aikar/</url>
- </repository>
- <repository>
- <id>placeholderapi</id>
- <url>https://repo.extendedclip.com/content/repositories/placeholderapi/</url>
- </repository>
- <repository>
- <id>minecraft-repo</id>
- <url>https://libraries.minecraft.net/</url>
- </repository>
- </repositories>
- <dependencies>
- <dependency>
- <groupId>de.butzlabben</groupId>
- <artifactId>FAWE_Paster</artifactId>
- <version>1.0</version>
- </dependency>
- <!-- Other dependencies -->
- <!-- https://mvnrepository.com/artifact/commons-io/commons-io -->
- <dependency>
- <groupId>commons-io</groupId>
- <artifactId>commons-io</artifactId>
- <version>2.16.1</version>
- </dependency>
- <!-- https://github.com/aikar/commands -->
- <dependency>
- <groupId>co.aikar</groupId>
- <artifactId>acf-paper</artifactId>
- <version>0.5.1-SNAPSHOT</version>
- </dependency>
- <!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-databind -->
- <dependency>
- <groupId>com.fasterxml.jackson.core</groupId>
- <artifactId>jackson-databind</artifactId>
- <version>2.16.2</version>
- </dependency>
- <!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.dataformat/jackson-dataformat-yaml -->
- <dependency>
- <groupId>com.fasterxml.jackson.dataformat</groupId>
- <artifactId>jackson-dataformat-yaml</artifactId>
- <version>2.16.2</version>
- </dependency>
- <dependency>
- <groupId>org.bstats</groupId>
- <artifactId>bstats-bukkit</artifactId>
- <version>3.0.2</version>
- </dependency>
- <!-- https://mvnrepository.com/artifact/com.github.MilkBowl/VaultAPI -->
- <dependency>
- <groupId>com.github.MilkBowl</groupId>
- <artifactId>VaultAPI</artifactId>
- <version>1.7.1</version>
- <scope>provided</scope>
- </dependency>
- <!-- repo minecraft-repo -->
- <dependency>
- <groupId>com.mojang</groupId>
- <artifactId>authlib</artifactId>
- <version>1.5.25</version>
- <scope>provided</scope>
- </dependency>
- <!-- https://mvnrepository.com/artifact/com.github.placeholderapi/placeholderapi -->
- <dependency>
- <groupId>com.github.placeholderapi</groupId>
- <artifactId>placeholderapi</artifactId>
- <version>2.11.5</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <version>4.13.2</version>
- <scope>test</scope>
- </dependency>
-
- <dependency>
- <groupId>com.github.stefvanschie.inventoryframework</groupId>
- <artifactId>IF</artifactId>
- <version>0.10.15</version>
- </dependency>
- </dependencies>
- <build>
- <finalName>MissileWars-${project.version}</finalName>
- <defaultGoal>package</defaultGoal>
- <sourceDirectory>src/main/java</sourceDirectory>
- </build>
- </project>
|