[
https://issues.apache.org/jira/browse/HAMA-496?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13197686#comment-13197686
]
Edward J. Yoon commented on HAMA-496:
-------------------------------------
I'll add below code to yarn's pom file. Including hama jars is better.
{code}
<build>
<plugins>
<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>
<configuration>
<artifactSet>
<includes>
<include>org.apache.hama:*</include>
</includes>
</artifactSet>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
<finalName>hama-yarn-${project.version}</finalName>
</build>
{code}
> Refactor POM files
> ------------------
>
> Key: HAMA-496
> URL: https://issues.apache.org/jira/browse/HAMA-496
> Project: Hama
> Issue Type: Improvement
> Components: build
> Affects Versions: 0.3.0
> Reporter: Edward J. Yoon
> Assignee: Edward J. Yoon
> Fix For: 0.4.0
>
> Attachments: patch.txt, patch.txt
>
>
> 1. Remove shade plugin from examples and yarn modules.
> 2. Mark yarn as a alpha version.
> 3. Remove 'copy-dependencies' from yarn module.
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators:
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira