You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@beam.apache.org by "Jesse Anderson (JIRA)" <ji...@apache.org> on 2016/04/25 20:32:12 UTC

[jira] [Commented] (BEAM-226) Upload JARs to Maven Central

    [ https://issues.apache.org/jira/browse/BEAM-226?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15256748#comment-15256748 ] 

Jesse Anderson commented on BEAM-226:
-------------------------------------

Until then, here are the basic steps to start using Beam:

1. Clone repo.
2. Cd into repo.
3. Type {{mvn install}}
4. Add to your {{pom.xml}} in the properties node:
{code:xml}
<beam.version>0.1.0-incubating-SNAPSHOT</beam.version>
{code}
5. Add the Beam dependency:
{code:xml}
    <dependency>
      <groupId>org.apache.beam</groupId>
      <artifactId>java-sdk-all</artifactId>
      <version>${beam.version}</version>
    </dependency>
{code}
6. Add the dependency for your runner of choice:
{code:xml}
    <dependency>
      <groupId>org.apache.beam</groupId>
      <artifactId>google-cloud-dataflow-java-runner</artifactId>
      <version>${beam.version}</version>
    </dependency>
{code}

> Upload JARs to Maven Central
> ----------------------------
>
>                 Key: BEAM-226
>                 URL: https://issues.apache.org/jira/browse/BEAM-226
>             Project: Beam
>          Issue Type: Bug
>          Components: build-system
>            Reporter: Jesse Anderson
>
> All usage of Beam requires cloning and building. The Beam POMs should be uploaded to Maven central.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)