pekko/akka-docs/rst/project/links.rst

93 lines
2.3 KiB
ReStructuredText
Raw Normal View History

.. _support:
2012-10-16 10:54:21 +02:00
#########
Project
#########
2012-08-21 10:14:50 +02:00
Commercial Support
2012-10-16 10:54:21 +02:00
^^^^^^^^^^^^^^^^^^
Commercial support is provided by `Lightbend <http://www.lightbend.com>`_.
Akka is part of the `Lightbend Reactive Platform <http://www.lightbend.com/platform>`_.
2012-08-21 10:14:50 +02:00
Mailing List
2012-10-16 10:54:21 +02:00
^^^^^^^^^^^^
`Akka User Google Group <http://groups.google.com/group/akka-user>`_
`Akka Developer Google Group <http://groups.google.com/group/akka-dev>`_
2012-08-21 10:14:50 +02:00
Downloads
2012-10-16 10:54:21 +02:00
^^^^^^^^^
`<http://akka.io/downloads>`_
2012-08-21 10:14:50 +02:00
Source Code
2012-10-16 10:54:21 +02:00
^^^^^^^^^^^
Akka uses Git and is hosted at `Github <http://github.com>`_.
2012-03-05 10:27:00 +01:00
* Akka: clone the Akka repository from `<http://github.com/akka/akka>`_
2012-08-21 10:14:50 +02:00
Releases Repository
2012-10-16 10:54:21 +02:00
^^^^^^^^^^^^^^^^^^^
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>`_
or
`search.maven.org (Akka versions before 2.4.3)
<http://search.maven.org/#search%7Cga%7C1%7Cg%3A%22com.typesafe.akka%22>`_
2012-08-21 10:14:50 +02:00
Snapshots Repository
2012-10-16 10:54:21 +02:00
^^^^^^^^^^^^^^^^^^^^
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/lightbend/akka/akka-actor_@binVersion@/.
All Akka modules that belong to the same build have the same timestamp.
2012-10-16 10:54:21 +02:00
sbt definition of snapshot repository
-------------------------------------
Make sure that you add the repository to the sbt resolvers::
resolvers += "Lightbend 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"
2012-10-16 10:54:21 +02:00
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>
2012-10-16 10:54:21 +02:00
<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>