Add fatjar profile

This commit is contained in:
Michael Lieberman
2014-10-31 15:12:13 -04:00
parent db35a8f620
commit b52b441dfd

28
pom.xml
View File

@@ -14,8 +14,6 @@
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
@@ -43,7 +41,6 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<dependency>
<groupId>org.apache.accumulo</groupId>
@@ -105,7 +102,6 @@
<artifactId>rexster-server</artifactId>
<version>2.6.0</version>
</dependency>
</dependencies>
<distributionManagement>
@@ -167,7 +163,6 @@
</plugins>
</build>
</profile>
<profile>
<id>javadoc</id>
<build>
@@ -198,7 +193,26 @@
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>fatjar</id>
<build>
<plugins>
<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>
</plugin>
</plugins>
</build>
</profile>
@@ -217,8 +231,6 @@
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
</plugin>
</plugins>
</build>
</project>