One issue when starting a new project, is getting hold of those pesky dependancies (jars/tld etc). I've updated megg to automatically grab them for you. megg will now take care of downloading a released file at any url, and unzipping or untaring the archive, and then copy the necessary into the right place for your project.
The best explanation is through an example.
java -jar megg-0.1.0.jar groovy
will create all necessary files for minimal groovy project
and then unpack the three essential jar files needed in the lib dir
from the auto downloaded groovy-1.0-beta-4.tar.gz
|
This is how this is declared, note use of ! to delimit url ! packedFile ! packedFile...
The dependancy declaration inside inherit the outer dependancy declarations
<dependancy from="http://dist.codehaus.org/groovy/distributions/groovy-1.0-beta-4.tar.gz!/groovy-1.0-beta-4/lib/" to="/lib/">
<dependancy from="groovy-1.0-beta-4.jar"/>
<dependancy from="asm-1.4.1.jar"/>
<dependancy from="asm-util-1.4.1.jar"/>
</dependancy>
|
|