* Change build to propagate all system properties starting with 'akka.'
to multi-jvm and multi-node tests.
* Adjusted AkkaSpec and MultiNodeSpec to use load of the config, which
means that default overrides (system properties) are used.
1) SecureRandom supported by Java (default)
2) SHA1PRNG (causes problems on Linux)
3) Various versions of the AES Counter RNG (faster than default at generating random data)
* Moved akka-remote/multi-jvm test to akka-remote-tests/multi-jvm
* Removed old test utilities that are replaced by testconductor
* Removed multi-jvm from akka-remote build, these tests are now in
akka-remote-tests
* Removed test dependencies in build that are not needed any longer
* DirectRoutedRemoteActorMultiJvmSpec replaced with
NewRemoteActorMultiJvmSpec, same thing
* Tests tagged with timing or long-running are excluded by default,
as before
* Use -Dakka.test.tags.include=long-running,timing to run all
untagged and also tests tagged with long-running or timing
* Use -Dakka.test.tags.only=timing,long-running to only run
tests tagged with long-running or timing, i.e. untagged tests,
or tests tagged with something else are not run
* I think the above two parameters covers our needs, but there is
also -Dakka.test.tags.exclude=some-other to be able to exclude
tests that are included by default
- include move of doc samples out of akka package also in the
includecode directives
- fix broken serialization docs, which require one thing in the akka
package
- protect all internal API using private[akka] and ScalaDoc
- remove package object which was after a previous refactoring only used
from a single place anyway
- document all public API methods, add brief description how failure
injector works
- include remoteTests in the top-level aggregate project
* Found source code here https://archive-crawler.svn.sourceforge.net
* Included org.archive.jmx.Client in akka-kernel
* Modified akka-cluster script
* Removed dependency to jmxclient from build
* Tested from dist with kernel app with cluster settings
* Improved DurableMailboxSpec for stand alone usage
* Changed build to publish DurableMailboxSpec in akka-mailboxes-common-test
* Changed documentation of durable mailboxes and added full example of
how to implement a durable mailbox, with test