diff options
Diffstat (limited to 'pom.xml')
-rw-r--r-- | pom.xml | 49 |
1 files changed, 33 insertions, 16 deletions
@@ -1,13 +1,13 @@ <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>org.bukkit</groupId> - <artifactId>bukkit</artifactId> - <version>0.0.1-SNAPSHOT</version> - <name>Bukkit</name> - <properties> - <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> - </properties> - <url>http://www.bukkit.org</url> + <modelVersion>4.0.0</modelVersion> + <groupId>org.bukkit</groupId> + <artifactId>bukkit</artifactId> + <version>0.0.1-SNAPSHOT</version> + <name>Bukkit</name> + <properties> + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> + </properties> + <url>http://www.bukkit.org</url> <build> <plugins> <plugin> @@ -19,25 +19,42 @@ <target>1.5</target> </configuration> </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-shade-plugin</artifactId> + <version>1.4</version> + <executions> + <execution> + <phase>package</phase> + <goals> + <goal>shade</goal> + </goals> + </execution> + </executions> + </plugin> </plugins> </build> <dependencies> - <dependency> - <groupId>org.yaml</groupId> - <artifactId>snakeyaml</artifactId> - <version>1.7</version> - <type>jar</type> - <scope>compile</scope> - </dependency> + <dependency> + <groupId>org.yaml</groupId> + <artifactId>snakeyaml</artifactId> + <version>1.7</version> + <type>jar</type> + <scope>compile</scope> + </dependency> <dependency> <groupId>com.googlecode.json-simple</groupId> <artifactId>json-simple</artifactId> <version>1.1</version> + <type>jar</type> + <scope>compile</scope> </dependency> <dependency> <groupId>org.avaje</groupId> <artifactId>ebean</artifactId> <version>2.7.3</version> + <type>jar</type> + <scope>compile</scope> </dependency> </dependencies> </project> |