<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>net.stormdev</groupId> <artifactId>uplanes</artifactId> <name>uPlanes</name> <url>http://dev.bukkit.org/bukkit-plugins/uCarsTrade</url> <issueManagement> <system>GitHub</system> <url>https://github.com/storm345dev/uCarsTrade/issues</url> </issueManagement> <build> <finalName>uPlanes</finalName> <sourceDirectory>${basedir}/src/main/java</sourceDirectory> <resources> <resource> <targetPath>.</targetPath> <filtering>true</filtering> <directory>${basedir}/src/main/resources/</directory> <includes> <include>*.yml</include> </includes> </resource> </resources> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.8.1</version> <configuration> <source>1.8</source> <target>1.8</target> </configuration> </plugin> <!-- <plugin> <artifactId>maven-assembly-plugin</artifactId> <configuration> <descriptors> <descriptor>src/main/assembly/package.xml</descriptor> </descriptors> </configuration> <executions> <execution> <id>build</id> <phase>package</phase> <goals> <goal>single</goal> </goals> </execution> </executions> </plugin> --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.9.1</version> <configuration> <show>public</show> <excludePackageNames> net.stormdev.uPlanes.commands:net.stormdev.uPlanes.main:net.stormdev.uPlanes.shops:net.stormdev.uPlanes.utils </excludePackageNames> <stylesheetfile>https://dl.dropboxusercontent.com/u/50672767/ucars/doc/stylesheet.css</stylesheetfile> </configuration> </plugin> </plugins> <extensions> <extension> <groupId>org.apache.maven.wagon</groupId> <artifactId>wagon-file</artifactId> <version>2.2</version> </extension> </extensions> </build> <repositories> <repository> <id>dmulloy2-repo</id> <url>https://repo.dmulloy2.net/nexus/repository/public/</url> </repository> <repository> <id>vault-repo</id> <url>https://jitpack.io</url> </repository> <repository> <id>spigot-repo</id> <url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url> </repository> <repository> <id>stormdev-repo</id> <url>https://stormdev.org/jenkins/plugin/repository/everything</url> </repository> <!-- <repository> <id>anticheat-repo</id> <url>http://repo.gravitydevelopment.net/</url> </repository> --> <repository> <id>sk89q-repo</id> <url>http://maven.sk89q.com/repo/</url> </repository> </repositories> <dependencies> <dependency> <groupId>org.spigotmc</groupId> <artifactId>spigot</artifactId> <version>1.12.2-R0.1-SNAPSHOT</version> <scope>provided</scope> </dependency> <dependency> <groupId>com.comphenix.protocol</groupId> <artifactId>ProtocolLib</artifactId> <version>4.5.0</version> </dependency> <dependency> <groupId>com.sk89q</groupId> <artifactId>worldguard</artifactId> <version>LATEST</version> </dependency> <dependency> <groupId>com.useful</groupId> <artifactId>ucars</artifactId> <version>24</version> </dependency> <dependency> <groupId>com.github.MilkBowl</groupId> <artifactId>VaultAPI</artifactId> <version>1.7</version> </dependency> <!--Bukkit API--> </dependencies> <distributionManagement> <repository> <id>github</id> <name>GitHub stormdev Apache Maven Packages</name> <url>https://maven.pkg.github.com/storm345dev/uPlanes</url> </repository> </distributionManagement> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <version>16</version> </project>