wonook commented on issue #182: (WIP) Add Beam spec 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.beam</groupId> <artifactId>beam-sdks-java-extensions-sql</artifactId> <version>${beam.version}</version> </dependency> <dependency> <groupId>org.apache.hadoop</groupId> <artifactId>hadoop-mapreduce-client-core</artifactId> <version>${hadoop.version}</version> <scope>provided</scope> </dependency> <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: us...@infra.apache.org With regards, Apache Git Services