Hi Busa,
You can look at the updated wiki at
http://www.openanzo.org/projects/openanzo/wiki/OpenAnzoFromSource which
explains how to setup an eclipse workspace to develop OpenAnzo. If you
follow these instructions, I would highly recommend creating a new
workspace specifically for OpenAnzo, since it depends on using a target
platform, which may affect other projects you may already have in your
current workspace. Once you have the new workspace setup for OpenAnzo,
I would look org.openanzo.servlet.sparql project as an example of a
basic servlet that uses an anzoclient to run sparql queries. I don't
have a formal document on how to create a new project, but I can explain
how I create new projects when I need them:
* copy an existing project, say org.openanzo.servlet.sparql to org.openanzo.servlet.busa.
* Delete all the .svn subdirectories within that new project, (in linux I do
cd rg.openanzo.servlet.busa
find -iname ".svn" -exec rm -rf {} \;
windows I think you would just have to do threw explorer.
)
* Edit the .project file and change the project name from sparql to busa
* edit the pom.xml file and change sparql to busa
* Import as existing project into eclipse
I will try to generate a generic pom.xml that will work independent from
the overall OpenAnzo maven build process, but if you want to build you
would need to add your new project into the openanzo-maven/pom.xml and
then you can build openanzo including your new project with maven using:
mvn package, which will create the distribution files.
Hope that provides some pointers for getting started.
Matt