<?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.spigotmc</groupId> <artifactId>builder</artifactId> <name>BuildTools</name> <version>1.0-SNAPSHOT</version> <build> <finalName>${project.name}</finalName> <plugins> <plugin> <groupId>net.md-5</groupId> <artifactId>scriptus</artifactId> <version>0.2</version> <executions> <execution> <phase>initialize</phase> <goals> <goal>describe</goal> </goals> </execution> </executions> <configuration> <format>git-${project.name}-%s-${build.number}</format> </configuration> </plugin> <plugin> <artifactId>maven-jar-plugin</artifactId> <version>3.1.0</version> <configuration> <archive> <manifestEntries> <Main-Class>org.spigotmc.builder.Bootstrap</Main-Class> <Implementation-Title>BuildTools</Implementation-Title> <Implementation-Version>${describe}</Implementation-Version> </manifestEntries> </archive> </configuration> </plugin> <plugin> <artifactId>maven-shade-plugin</artifactId> <version>3.2.0</version> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> </execution> </executions> <configuration> <filters> <filter> <artifact>*:*</artifact> <excludes> <exclude>**/*.java</exclude> <exclude>**/*.SF</exclude> <exclude>**/*.DSA</exclude> </excludes> </filter> </filters> <minimizeJar>true</minimizeJar> </configuration> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <version>1.18.4</version> <scope>provided</scope> </dependency> </dependencies> <properties> <build.number>unknown</build.number> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <maven.compiler.source>1.6</maven.compiler.source> <maven.compiler.target>1.6</maven.compiler.target> </properties> </project>