On Fri, May 2, 2008 at 3:50 AM, Stephan Schmidt <[EMAIL PROTECTED]> wrote:
> is there as HelloWorld application with a 5-min description which > things to download, > how to setup etc.? Sorry to say; No. Right now, my guess is that the quickest way to get started is to use IntelliJ, checkout the subversion repository by; svn co https://scm.ops4j.org/repos/ops4j/projects/qi4j and open the IntelliJ/IDEA project file (.ipr), then go to some sample code and their tests. Right now, you need to be determined to try things out, but it is easier than you might think. IF you decide to do something on your own, here is what I think you will need (not confirmed, but please provide feedback); 1. Create a project which has dependencies on; qi4j-core-api qi4j-core-spi qi4j-core-runtime qi4j-core-testsupport qi4j-core-bootstrap 2. Create a class that extends AbstractQi4jTest, which will act as your bootstrapper. 3. You need to implement the assemble( ModuleAssembly module ) method, and you call addComposites() with each of the Composite classes you create. Likewise for services and objects. 4. Now, create your domain model, bind the stuff in the Composites and you are ready to run the tests. Cheers Niclas Cheers Niclas _______________________________________________ qi4j-dev mailing list [email protected] http://lists.ops4j.org/mailman/listinfo/qi4j-dev

