Some documentation fixes
- microkernel information - repository links - akka download description
This commit is contained in:
parent
a3af3626ce
commit
37efb72f22
8 changed files with 142 additions and 118 deletions
|
|
@ -36,8 +36,7 @@ Download
|
|||
--------
|
||||
|
||||
There are several ways to download Akka. You can download the full distribution
|
||||
with microkernel, which includes all modules. You can download just the core
|
||||
distribution or just the actors distribution. Or you can use a build tool like
|
||||
with microkernel, which includes all modules. Or you can use a build tool like
|
||||
Maven or sbt to download dependencies from the Akka Maven repository.
|
||||
|
||||
Modules
|
||||
|
|
@ -54,7 +53,7 @@ Akka is very modular and has many JARs for containing different features.
|
|||
- ``akka-camel-2.0-SNAPSHOT.jar`` -- Apache Camel Actors integration (it's the best way to have your Akka application communicate with the rest of the world)
|
||||
- ``akka-camel-typed-2.0-SNAPSHOT.jar`` -- Apache Camel Typed Actors integration
|
||||
- ``akka-spring-2.0-SNAPSHOT.jar`` -- Spring framework integration
|
||||
- ``akka-kernel-2.0-SNAPSHOT.jar`` -- Akka microkernel for running a bare-bones mini application server (embeds Jetty etc.)
|
||||
- ``akka-kernel-2.0-SNAPSHOT.jar`` -- Akka microkernel for running a bare-bones mini application server
|
||||
|
||||
How to see the JARs dependencies of each Akka module is described in the
|
||||
:ref:`dependencies` section. Worth noting is that ``akka-actor`` has zero
|
||||
|
|
@ -69,18 +68,18 @@ http://akka.io/downloads and unzip it.
|
|||
Using a snapshot version
|
||||
------------------------
|
||||
|
||||
The Akka nightly snapshots are published to
|
||||
http://repo.typesafe.com/typesafe/maven-timestamps/ and are versioned with a
|
||||
timestamp. You need to choose a timestamped version to work with and can decide
|
||||
when to update to a newer version.
|
||||
The Akka nightly snapshots are published to http://akka.io/snapshots/ and are
|
||||
versioned with both ``SNAPSHOT`` and timestamps. You can choose a timestamped
|
||||
version to work with and can decide when to update to a newer version. The Akka
|
||||
snapshots repository is also proxied through http://repo.typesafe.com/typesafe/snapshots/
|
||||
which includes proxies for several other repositories that Akka modules depend on.
|
||||
|
||||
Microkernel
|
||||
^^^^^^^^^^^
|
||||
-----------
|
||||
|
||||
The Akka Modules distribution includes the microkernel. To run the microkernel:
|
||||
|
||||
* Set the AKKA_HOME environment variable to the root of the Akka distribution.
|
||||
* To start the kernel use the scripts in the ``bin`` directory and deploy all samples applications from ``./deploy`` dir.
|
||||
The Akka distribution includes the microkernel. To run the microkernel put your
|
||||
application jar in the ``deploy`` directory and use the scripts in the ``bin``
|
||||
directory.
|
||||
|
||||
More information is available in the documentation of the :ref:`microkernel`.
|
||||
|
||||
|
|
@ -88,7 +87,7 @@ Using a build tool
|
|||
------------------
|
||||
|
||||
Akka can be used with build tools that support Maven repositories. The Akka
|
||||
Maven repository can be found at http://akka.io/repository/ and Typesafe provides
|
||||
Maven repository can be found at http://akka.io/realeses/ and Typesafe provides
|
||||
http://repo.typesafe.com/typesafe/releases/ that proxies several other
|
||||
repositories, including akka.io.
|
||||
|
||||
|
|
@ -121,7 +120,7 @@ Summary of the essential parts for using Akka with Maven:
|
|||
<version>2.0-SNAPSHOT</version>
|
||||
</dependency>
|
||||
|
||||
**Note**: for snapshot versions akka uses specific timestamped versions.
|
||||
**Note**: for snapshot versions both ``SNAPSHOT`` and timestamped versions are published.
|
||||
|
||||
|
||||
Using Akka with SBT
|
||||
|
|
@ -153,7 +152,7 @@ Using Akka with Eclipse
|
|||
Information about how to use Akka with Eclipse, including how to create an Akka Eclipse project from scratch,
|
||||
can be found in the :ref:`getting-started-first-scala-eclipse`.
|
||||
|
||||
Setup SBT project and then use `sbteclipse <https://github.com/typesafehub/sbteclipse>`_ to generate Eclipse project.
|
||||
Setup SBT project and then use `sbteclipse <https://github.com/typesafehub/sbteclipse>`_ to generate Eclipse project.
|
||||
|
||||
Using Akka with IntelliJ IDEA
|
||||
-----------------------------
|
||||
|
|
@ -166,7 +165,6 @@ Build from sources
|
|||
Akka uses Git and is hosted at `Github <http://github.com>`_.
|
||||
|
||||
* Akka: clone the Akka repository from `<http://github.com/jboner/akka>`_
|
||||
* Akka Modules: clone the Akka Modules repository from `<http://github.com/jboner/akka-modules>`_
|
||||
|
||||
Continue reading the page on :ref:`building-akka`
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue