<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> <artifactId>quests-v1_8_R2</artifactId> <parent> <groupId>me.blackvein.quests</groupId> <artifactId>quests-parent</artifactId> <version>3.7.7</version> </parent> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <dependencies> <dependency> <groupId>org.bukkit</groupId> <artifactId>craftbukkit</artifactId> <version>1.8.3-R0.1-SNAPSHOT</version> <scope>provided</scope> </dependency> <dependency> <groupId>me.blackvein.quests</groupId> <artifactId>quests-main</artifactId> <version>${revision}</version> <scope>compile</scope> </dependency> </dependencies> <build> <defaultGoal>clean install</defaultGoal> <sourceDirectory>${basedir}/src/main/java</sourceDirectory> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>2.3.2</version> <configuration> <source>1.8</source> <target>1.8</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>2.3.2</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-shade-plugin</artifactId> <version>2.1</version> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> </execution> </executions> <configuration> <filters> <filter> <artifact>*:*</artifact> <excludes> <exclude>META-INF/*</exclude> </excludes> </filter> </filters> <artifactSet> <excludes> <exclude>com.*</exclude> <exclude>net.*</exclude> <exclude>org.*</exclude> <exclude>io.*</exclude> </excludes> </artifactSet> </configuration> </plugin> </plugins> </build> </project>