...
Source code and binary releases are available at http://kenai.com/projects/groovy-groosh.
Groosh can be used via Grapes.
Note: If Ivy (Grapes) can not download Groosh add the file
| Code Block |
|---|
grapeConfig.xml |
to your
| Code Block |
|---|
~/.groovy |
directory with the following content:
| Code Block |
|---|
<ivysettings>
<property name="ivy.checksums" value=""/>
<settings defaultResolver="downloadGrapes"/>
<resolvers>
<chain name="downloadGrapes">
<filesystem name="cachedGrapes">
<ivy pattern="${user.home}/.groovy/grapes/[organisation]/[module]/ivy-[revision].xml"/>
<artifact pattern="${user.home}/.groovy/grapes/[organisation]/[module]/[type]s/[artifact]-[revision].[ext]"/>
</filesystem>
<!-- todo add 'endorsed groovy extensions' resolver here -->
<ibiblio name="codehaus" root="http://repository.codehaus.org/" m2compatible="true"/>
<ibiblio name="ibiblio" m2compatible="true"/>
<ibiblio name="java.net2" root="http://download.java.net/maven/2/" m2compatible="true"/>
</chain>
</resolvers>
</ivysettings>
|
There seams to be some problem with checksums generated by Maven 2.2.1
Installing
No installation required. Groosh can be added to Groovy using Grapes.
...