Fork me on GitHub

Dependency Info

This project uses Maven for dependency management.

Below are some examples of how to import Streams artifacts into your project.

Please note that your project should import multiple artifacts corresponding to the Components in your stream(s) and the Runtime used to execute your stream(s).

You should not import apache-streams (depicted below), because it does not do anything interesting.

Browse the “Project Modules” index of streams-project to find artifacts you might want to import.

streams-project-modules

Apache Maven

<dependency>
  <groupId>org.apache.streams</groupId>
  <artifactId>streams-master</artifactId>
  <version>0.5.1</version>
  <type>pom</type>
</dependency>

Apache Buildr

'org.apache.streams:apache-streams:pom:0.5.1'

Apache Ivy

<dependency org="org.apache.streams" name="streams-master" rev="0.5.1">
  <artifact name="streams-master" type="pom" />
</dependency>

Groovy Grape

@Grapes(
@Grab(group='org.apache.streams', module='streams-master', version='0.5.1')
)

Gradle

compile 'org.apache.streams:streams-master:0.5.1'

Leiningen

[org.apache.streams/streams-master "0.5.1"]

SBT

libraryDependencies += "org.apache.streams" % "streams-master" % "0.5.1"
Licensed under Apache License 2.0 - http://www.apache.org/licenses/LICENSE-2.0