You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@joshua.apache.org by mj...@apache.org on 2016/05/17 00:16:08 UTC

[5/6] incubator-joshua git commit: Added Maven assembly plugin

Added Maven assembly plugin

Project: http://git-wip-us.apache.org/repos/asf/incubator-joshua/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-joshua/commit/575ca465
Tree: http://git-wip-us.apache.org/repos/asf/incubator-joshua/tree/575ca465
Diff: http://git-wip-us.apache.org/repos/asf/incubator-joshua/diff/575ca465

Branch: refs/heads/JOSHUA-264
Commit: 575ca465553f2cbc7de06b8c362a3bff71f44de7
Parents: 7c8e856
Author: Thamme Gowda <tg...@gmail.com>
Authored: Mon May 16 15:42:31 2016 -0700
Committer: Thamme Gowda <tg...@gmail.com>
Committed: Mon May 16 15:42:31 2016 -0700

----------------------------------------------------------------------
 pom.xml | 13 +++++++++++++
 1 file changed, 13 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-joshua/blob/575ca465/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 740a677..3b1f4ef 100644
--- a/pom.xml
+++ b/pom.xml
@@ -116,6 +116,19 @@
           <target>1.8</target>
         </configuration>
       </plugin>
+      <plugin>
+        <artifactId>maven-assembly-plugin</artifactId>
+        <configuration>
+          <archive>
+            <manifest>
+              <mainClass>org.apache.joshua.decoder.JoshuaDecoder</mainClass>
+            </manifest>
+          </archive>
+          <descriptorRefs>
+            <descriptorRef>jar-with-dependencies</descriptorRef>
+          </descriptorRefs>
+        </configuration>
+      </plugin>
     </plugins>
   </build>
   <dependencies>