Griffon 1.2.0

org.codehaus.griffon.cli.shell.command
[Java] Class ClearDependencyCacheCommand

java.lang.Object
  org.codehaus.griffon.cli.shell.AbstractGriffonCommand
      org.codehaus.griffon.cli.shell.command.ClearDependencyCacheCommand

@Command(scope = "griffon",
        name = "clear-dependency-cache",
        description = "Removes dependencies from the Ivy cache")
public class ClearDependencyCacheCommand
extends AbstractGriffonCommand

Authors:
Andres Almiray
Since:
0.9.5


Field Summary
private boolean all

private boolean griffon

private String group

private String name

private boolean plugins

 
Fields inherited from class AbstractGriffonCommand
env, nonInteractive
 
Constructor Summary
ClearDependencyCacheCommand()

 

Field Detail

all

@Option(name = "--all",
            description = "Deletes the whole cache.",
            required = false)
private boolean all


griffon

@Option(name = "--griffon",
            description = "Deletes all Griffon libraries, including plugins.",
            required = false)
private boolean griffon


group

@Option(name = "--group",
            description = "Deletes all libraries with a matching group.",
            required = false)
private String group


name

@Option(name = "--name",
            description = "Deletes all libraries with a matching name and group. A value for --group must be specified too.",
            required = false)
private String name


plugins

@Option(name = "--plugins",
            description = "Deletes all Griffon plugin libraries.",
            required = false)
private boolean plugins


 
Constructor Detail

ClearDependencyCacheCommand

ClearDependencyCacheCommand()


 

Groovy Documentation