You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@nemo.apache.org by GitBox <gi...@apache.org> on 2018/12/14 08:52:34 UTC

[GitHub] wonook edited a comment on issue #182: [NEMO-292] (WIP) Run Beam ValidatesRunner tests

wonook edited a comment on issue #182: [NEMO-292] (WIP) Run Beam ValidatesRunner tests
URL: https://github.com/apache/incubator-nemo/pull/182#issuecomment-447255102
 
 
   @kennknowles I think referring to our `nemo-examples-beam` package `pom.xml` could help creating the right deps & bundling & distribution. To my knowledge, it is capable of running various Beam programs with the specified modules. To provide a bit more information, `com.github.fommil.netlib` library was used to implement the ALS example, so this would be irrelevant but try adding the following lines to your pom.xml. I hope this helps!
   
   ```
   <dependency>
        <groupId>org.apache.hadoop</groupId>
        <artifactId>hadoop-common</artifactId>
        <version>${hadoop.version}</version>
        <exclusions>
            <exclusion>
                <groupId>org.slf4j</groupId>
                <artifactId>slf4j-api</artifactId>
            </exclusion>
            <exclusion>
                <groupId>org.slf4j</groupId>
                <artifactId>slf4j-log4j12</artifactId>
            </exclusion>
        </exclusions>
    </dependency>
   ```

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services