init project setup

This commit is contained in:
Jonas Boner 2009-02-16 13:53:10 +01:00
commit 0a31ad7188
15 changed files with 503 additions and 0 deletions

16
api-java/testng.xml Executable file
View file

@ -0,0 +1,16 @@
<!DOCTYPE suite SYSTEM "http://testng.org/testng-1.0.dtd" >
<suite name="Tests for Akka Java API module" verbose="1">
<test name="core">
<groups>
<run>
<include name="functional"/>
<include name="unit"/>
<exclude name="broken"/>
</run>
</groups>
<packages>
<package name="com.scalablesolutions.api.*" />
</packages>
</test>
</suite>