123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124 |
- <?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>4.1.0</version>
- <modelVersion>4.0.0</modelVersion>
- <artifactId>missilewars-plugin</artifactId>
- <dependencies>
- <dependency>
- <groupId>de.butzlabben</groupId>
- <artifactId>1_12</artifactId>
- <version>1.0</version>
- <scope>compile</scope>
- </dependency>
- <dependency>
- <groupId>de.butzlabben</groupId>
- <artifactId>1_13</artifactId>
- <version>1.0</version>
- <scope>compile</scope>
- </dependency>
- <dependency>
- <groupId>de.butzlabben</groupId>
- <artifactId>1_13_FAWE</artifactId>
- <version>1.0</version>
- <scope>compile</scope>
- </dependency>
- <dependency>
- <groupId>de.butzlabben</groupId>
- <artifactId>1_16_FAWE</artifactId>
- <version>1.0</version>
- <scope>compile</scope>
- </dependency>
- <!-- Other dependencies -->
- <!-- https://mvnrepository.com/artifact/commons-io/commons-io -->
- <dependency>
- <groupId>commons-io</groupId>
- <artifactId>commons-io</artifactId>
- <version>2.11.0</version>
- <scope>compile</scope>
- </dependency>
- <!-- https://mvnrepository.com/artifact/com.pro-crafting.mc/commandframework -->
- <dependency>
- <groupId>com.pro-crafting.mc</groupId>
- <artifactId>commandframework</artifactId>
- <version>0.2.1</version>
- <scope>compile</scope>
- </dependency>
- <!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-core -->
- <dependency>
- <groupId>com.fasterxml.jackson.core</groupId>
- <artifactId>jackson-core</artifactId>
- <version>2.12.4</version>
- <scope>compile</scope>
- </dependency>
- <!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-databind -->
- <dependency>
- <groupId>com.fasterxml.jackson.core</groupId>
- <artifactId>jackson-databind</artifactId>
- <version>2.12.4</version>
- <scope>compile</scope>
- </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.12.4</version>
- <scope>compile</scope>
- </dependency>
- <dependency>
- <groupId>org.bstats</groupId>
- <artifactId>bstats-bukkit</artifactId>
- <version>2.2.1</version>
- <scope>compile</scope>
- </dependency>
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <version>4.13.2</version>
- <scope>test</scope>
- </dependency>
- </dependencies>
- <build>
- <finalName>MissileWars-${project.version}</finalName>
- <defaultGoal>package</defaultGoal>
- <sourceDirectory>src/main/java</sourceDirectory>
- </build>
- </project>
|