<?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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>org.cyberiantiger.minecraft</groupId> <artifactId>creativeitemcontrol</artifactId> <version>1.14-SNAPSHOT</version> <scm> <connection>scm:git:git://github.com/cybertiger/Bukkit-CreativeItemControl.git</connection> <developerConnection>scm:git:git@github.com:cybertiger/Bukkit-CreativeItemControl.git</developerConnection> <url>https://github.com/cybertiger/Bukkit-CreativeItemControl/</url> </scm> <build> <sourceDirectory>src/main/java</sourceDirectory> <extensions> <extension> <groupId>org.apache.maven.wagon</groupId> <artifactId>wagon-webdav</artifactId> <version>1.0-beta-2</version> </extension> </extensions> <resources> <resource> <filtering>true</filtering> <directory>src/resources</directory> </resource> </resources> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>3.0</version> <configuration> <source>1.8</source> <target>1.8</target> </configuration> </plugin> <plugin> <artifactId>maven-release-plugin</artifactId> <version>2.5.1</version> </plugin> <plugin> <artifactId>maven-shade-plugin</artifactId> <version>2.4.3</version> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> <configuration> <artifactSet> <includes> <include>org.cyberiantiger.minecraft:*</include> </includes> </artifactSet> </configuration> </execution> </executions> </plugin> </plugins> </build> <repositories> <repository> <id>spigot-repo</id> <url>https://hub.spigotmc.org/nexus/content/groups/public/</url> </repository> </repositories> <dependencies> <dependency> <groupId>org.bukkit</groupId> <artifactId>bukkit</artifactId> <version>1.14.1-R0.1-SNAPSHOT</version> <scope>compile</scope> </dependency> </dependencies> <distributionManagement> <repository> <id>nexus</id> <name>Releases</name> <url>https://www.iani.de/nexus/content/repositories/releases/</url> </repository> <snapshotRepository> <id>nexus</id> <name>Snapshot</name> <url>https://www.iani.de/nexus/content/repositories/snapshots/</url> </snapshotRepository> </distributionManagement> <properties> <project.build.number>brokko</project.build.number> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> </project>