integrate-with

Purpose

The integrate-with command allows Griffon to be integrated with a variety of IDEs and build systems.

Examples

griffon integrate-with --eclipse --intellij --textmate --ant --idea

Description

Usage:

griffon integrate-with [options]

The integrate-with command will integrate Griffon with different IDEs and build systems based on the arguments provided. For example the eclipse command will produce Eclipse project and classpath for use with SpringSource STS.

The command is however extensible. For example if you want to provide a myide command you can do so by creating an _Events.groovy file and handling the IntegrateWithStart event:

eventIntegrateWithStart = {
    binding.integrateMyide = {
        // your code here
    }
}

Options: