Repository: incubator-samza Updated Branches: refs/heads/master 76754f098 -> dd13c3d20
Updating download page with 0.7.0 release information Project: http://git-wip-us.apache.org/repos/asf/incubator-samza/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-samza/commit/dd13c3d2 Tree: http://git-wip-us.apache.org/repos/asf/incubator-samza/tree/dd13c3d2 Diff: http://git-wip-us.apache.org/repos/asf/incubator-samza/diff/dd13c3d2 Branch: refs/heads/master Commit: dd13c3d20f6ab510d0111999d5c2011d1f44db14 Parents: 76754f0 Author: Chris Riccomini <[email protected]> Authored: Wed Jul 9 09:30:06 2014 -0700 Committer: Chris Riccomini <[email protected]> Committed: Wed Jul 9 09:30:06 2014 -0700 ---------------------------------------------------------------------- docs/startup/download/index.md | 49 +++++++++++++++++++++++++------------ 1 file changed, 33 insertions(+), 16 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-samza/blob/dd13c3d2/docs/startup/download/index.md ---------------------------------------------------------------------- diff --git a/docs/startup/download/index.md b/docs/startup/download/index.md index df86e2d..6ee6b1f 100644 --- a/docs/startup/download/index.md +++ b/docs/startup/download/index.md @@ -18,52 +18,70 @@ title: Download See the License for the specific language governing permissions and limitations under the License. --> -<!-- TODO update maven dependency versions appropriately --> -If you want to play around with Samza for the first time, go to [Hello Samza](/startup/hello-samza/0.7.0). +Samza is released as a source artifact, and also through Maven. + +If you just want to play around with Samza for the first time, go to [Hello Samza](/startup/hello-samza/0.7.0). + +### Source Releases + + * [samza-sources-0.7.0-incubating.tgz](http://www.apache.org/dyn/closer.cgi/incubator/samza/0.7.0-incubating) -<!-- ### Maven -All Samza JARs are published through Maven. +All Samza JARs are published through [Apache's Maven repository](https://repository.apache.org/content/groups/public/org/apache/samza/). #### Artifacts -A Samza project that runs with Kafka and YARN should depend on the following artifacts. +A Maven-based Samza project can pull in all required dependencies Samza dependencies this XML block: {% highlight xml %} <dependency> - <groupId>samza</groupId> + <groupId>org.apache.samza</groupId> <artifactId>samza-api</artifactId> <version>0.7.0</version> </dependency> <dependency> - <groupId>samza</groupId> - <artifactId>samza-core_2.9.2</artifactId> + <groupId>org.apache.samza</groupId> + <artifactId>samza-core_2.10</artifactId> <version>0.7.0</version> <scope>runtime</scope> </dependency> <dependency> - <groupId>samza</groupId> - <artifactId>samza-serializers_2.9.2</artifactId> + <groupId>org.apache.samza</groupId> + <artifactId>samza-serializers_2.10</artifactId> + <version>0.7.0</version> +</dependency> +<dependency> + <groupId>org.apache.samza</groupId> + <artifactId>samza-shell</artifactId> + <classifier>dist</classifier> + <type>tgz</type> <version>0.7.0</version> <scope>runtime</scope> </dependency> <dependency> - <groupId>samza</groupId> - <artifactId>samza-yarn_2.9.2</artifactId> + <groupId>org.apache.samza</groupId> + <artifactId>samza-yarn_2.10</artifactId> <version>0.7.0</version> - <classifier>yarn-2.0.5-alpha</classifier> <scope>runtime</scope> </dependency> <dependency> - <groupId>samza</groupId> - <artifactId>samza-kafka_2.9.2</artifactId> + <groupId>org.apache.samza</groupId> + <artifactId>samza-kv_2.10</artifactId> + <version>0.7.0</version> + <scope>runtime</scope> +</dependency> +<dependency> + <groupId>org.apache.samza</groupId> + <artifactId>samza-kafka_2.10</artifactId> <version>0.7.0</version> <scope>runtime</scope> </dependency> {% endhighlight %} +[Hello Samza](/startup/hello-samza/0.7.0) is a working Maven project that illustrates how to build projects that have Samza jobs in them. + #### Repositories Samza is available in the Apache Maven repository. @@ -83,7 +101,6 @@ Snapshot builds are available in the Apache Maven snapshot repository. <url>https://repository.apache.org/content/groups/snapshots</url> </repository> {% endhighlight %} ---> ### Checking out and Building
