views:

206

answers:

1

I just created a template project for Scala using Ant and Apache Ivy. I want to get the communitie's input on any improvements to the Template so it can be improved.

The Environment effectively consists of 3 files:

  • build.xml
  • ivy.xml
  • ivysettings.xml

running ant init will create all needed directories. I was wondering if there are any Ant or Apache Ivy gurus around that could give some input. The Git Project is Located Here

And the Project HomePage here

A: 

I would actually recommend a sbt-based solution.

Clone with Git (also available on Windows with msysgit) the following repository:

git clone http://github.com/mgutz/sbt-console-template.git

and start immediately with a fully functional Scala project (complete with tests).

See Get Started With Scala, Sbt And Eclipse for more.

VonC