diff options
author | md_5 <git@md-5.net> | 2014-11-26 16:56:48 +1100 |
---|---|---|
committer | md_5 <git@md-5.net> | 2014-11-28 17:10:15 +1100 |
commit | 032e8ca0a3a2fd6059308ca43083df986467b99e (patch) | |
tree | 29a154dcfab98c5390ef6502c604509b884ea2d8 /pom.xml | |
download | buildtools-032e8ca0a3a2fd6059308ca43083df986467b99e.tar buildtools-032e8ca0a3a2fd6059308ca43083df986467b99e.tar.gz buildtools-032e8ca0a3a2fd6059308ca43083df986467b99e.tar.lz buildtools-032e8ca0a3a2fd6059308ca43083df986467b99e.tar.xz buildtools-032e8ca0a3a2fd6059308ca43083df986467b99e.zip |
Initial Commit
For more information please see http://www.spigotmc.org/
Diffstat (limited to 'pom.xml')
-rw-r--r-- | pom.xml | 107 |
1 files changed, 107 insertions, 0 deletions
@@ -0,0 +1,107 @@ +<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> + <packaging>jar</packaging> + <version>1.0-SNAPSHOT</version> + + <name>BuildTools</name> + <description></description> + + <properties> + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> + </properties> + + <dependencies> + <dependency> + <groupId>com.custardsource.dybdob</groupId> + <artifactId>java-diff-utils-copy</artifactId> + <version>1.0.1</version> + </dependency> + <dependency> + <groupId>com.google.guava</groupId> + <artifactId>guava</artifactId> + <version>18.0</version> + <scope>compile</scope> + </dependency> + <dependency> + <groupId>net.sf.jopt-simple</groupId> + <artifactId>jopt-simple</artifactId> + <version>4.7</version> + <scope>compile</scope> + </dependency> + <dependency> + <groupId>org.eclipse.jgit</groupId> + <artifactId>org.eclipse.jgit</artifactId> + <version>3.3.2.201404171909-r</version> + <scope>compile</scope> + </dependency> + <dependency> + <groupId>org.projectlombok</groupId> + <artifactId>lombok</artifactId> + <version>1.14.8</version> + <scope>provided</scope> + </dependency> + <dependency> + <groupId>commons-io</groupId> + <artifactId>commons-io</artifactId> + <version>2.4</version> + </dependency> + </dependencies> + + <build> + <finalName>${project.name}</finalName> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-compiler-plugin</artifactId> + <version>3.1</version> + <configuration> + <source>1.6</source> + <target>1.6</target> + </configuration> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-jar-plugin</artifactId> + <version>2.5</version> + <configuration> + <archive> + <manifestEntries> + <Main-Class>org.spigotmc.builder.Builder</Main-Class> + </manifestEntries> + </archive> + </configuration> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-shade-plugin</artifactId> + <version>2.3</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> +</project> |