...
Andres Almiray [aalmiray at users dot sourceforge dot net]
Download
Installing
Drop jidebuilder-4.0 into $GROOVY_HOME/lib along with its dependencies
- jide-oss-23.104.27 -> http://java.net/projects/jide-oss.dev.java.net
- svg-salamander-1.1 -> https://svgsalamander.dev.java.net
...
| Code Block |
|---|
<repository>
<id>codehaus-release</id>
<name>Codehaus</name>
<url>http://repository.codehaus.org</url>
</repository>
<repository>
<id>sonatype-release</id>
<name>Sonatype</name>
<url>http://repository.sonatype.org/content/groups/public</url>
</repository>
<dependency>
<groupId>org.codehaus.griffon</groupId>
<artifactId>jidebuilder</artifactId>
<version>5<version>6.0</version>
</dependency>
|
...
| Code Block |
|---|
repositories {
mavenRepo name: 'Codehaus', urls: 'http://repository.codehaus.org'
mavenRepo name: 'Sonatype', urls: 'http://repository.sonatype.org/content/groups/public'
}
dependencies {
compile 'org.codehaus.griffon:jidebuilder:56.0'
}
|
The jar file for svg-salamander-1.1 is missing from Maven's central repo. You must download from here and configure your build/classpath appropriately.
Pre-requisites
Groovy 1.8.6 8 is the required minimum version to run JideBuilder 56.0
Previous versions of JideBuilder will run with earlier versions of Groovy, it is recommended that you upgrade to the 1.8.x series in order to take advantage of
...