alvinalexander.com | career | drupal | java | mac | mysql | perl | scala | uml | unix  

Akka/Scala example source code file (links.rst)

This example Akka source code file (links.rst) is included in my "Source Code Warehouse" project. The intent of this project is to help you more easily find Akka and Scala source code examples by using tags.

All credit for the original source code belongs to akka.io; I'm just trying to make examples easier to find. (For my Scala work, see my Scala examples and tutorials.)

Akka tags/keywords

akka, all, commercial, for, google, group, make, repository, snapshots, typesafe

The links.rst Akka example source code

.. _support:

#########
 Project
#########

Commercial Support
^^^^^^^^^^^^^^^^^^

Commercial support is provided by `Typesafe <http://www.typesafe.com>`_.
Akka is part of the `Typesafe Reactive Platform <http://www.typesafe.com/platform>`_.

Mailing List
^^^^^^^^^^^^

`Akka User Google Group <http://groups.google.com/group/akka-user>`_

`Akka Developer Google Group <http://groups.google.com/group/akka-dev>`_


Downloads
^^^^^^^^^

`<http://akka.io/downloads>`_


Source Code
^^^^^^^^^^^

Akka uses Git and is hosted at `Github <http://github.com>`_.

* Akka: clone the Akka repository from `<http://github.com/akka/akka>`_


Releases Repository
^^^^^^^^^^^^^^^^^^^

All Akka releases are published via Sonatype to Maven Central, see
`search.maven.org
<http://search.maven.org/#search%7Cga%7C1%7Cg%3A%22com.typesafe.akka%22>`_

Snapshots Repository
^^^^^^^^^^^^^^^^^^^^

Nightly builds are available in http://repo.akka.io/snapshots/ as both ``SNAPSHOT`` and
timestamped versions.

For timestamped versions, pick a timestamp from
http://repo.akka.io/snapshots/com/typesafe/akka/akka-actor_@binVersion@/.
All Akka modules that belong to the same build have the same timestamp.

sbt definition of snapshot repository
-------------------------------------

Make sure that you add the repository to the sbt resolvers::

  resolvers += "Typesafe Snapshots" at "http://repo.akka.io/snapshots/"

Define the library dependencies with the timestamp as version. For example::

    libraryDependencies += "com.typesafe.akka" % "akka-remote_@binVersion@" % 
      "2.1-20121016-001042"

maven definition of snapshot repository
---------------------------------------

Make sure that you add the repository to the maven repositories in pom.xml::

  <repositories>
    <repository>
      <id>akka-snapshots</id>
      <name>Akka Snapshots</name>
      <url>http://repo.akka.io/snapshots/</url>
      <layout>default</layout>
    </repository>
  </repositories>  

Define the library dependencies with the timestamp as version. For example::

  <dependencies>
    <dependency>
      <groupId>com.typesafe.akka</groupId>
      <artifactId>akka-remote_@binVersion@</artifactId>
      <version>2.1-20121016-001042</version>
    </dependency>
  </dependencies>



Other Akka source code examples

Here is a short list of links related to this Akka links.rst source code file:

... this post is sponsored by my books ...

#1 New Release!

FP Best Seller

 

new blog posts

 

Copyright 1998-2021 Alvin Alexander, alvinalexander.com
All Rights Reserved.

A percentage of advertising revenue from
pages under the /java/jwarehouse URI on this website is
paid back to open source projects.