Skip to content

Commit

Permalink
packaging!
Browse files Browse the repository at this point in the history
  • Loading branch information
iann committed May 4, 2012
1 parent ea0db5f commit 14e4419
Showing 1 changed file with 24 additions and 1 deletion.
25 changes: 24 additions & 1 deletion pom.xml
Expand Up @@ -5,7 +5,7 @@
<artifactId>weathered</artifactId>
<version>0.1-SNAPSHOT</version>
<inceptionYear>2012</inceptionYear>
<packaging>rar</packaging>
<!--<packaging>rar</packaging>-->
<properties>
<scala.version>2.9.2</scala.version>
</properties>
Expand Down Expand Up @@ -82,6 +82,29 @@
<target>1.6</target>
</configuration>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.3</version>
<configuration>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
<archive>
<manifest>
<mainClass>weathered.LoadISDFile</mainClass>
</manifest>
</archive>
</configuration>
<executions>
<execution>
<id>make-assembly</id> <!-- this is used for inheritance merges -->
<phase>package</phase> <!-- bind to the packaging phase -->
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<reporting>
Expand Down

0 comments on commit 14e4419

Please sign in to comment.