[Java] Annotation Type GrabResolver
- groovy.lang.GrabResolver
@Retention(RetentionPolicy.SOURCE) @Target({ ElementType.CONSTRUCTOR, ElementType.FIELD, ElementType.LOCAL_VARIABLE, ElementType.METHOD, ElementType.PARAMETER, ElementType.TYPE}) public @interface GrabResolver
Used to add a repository for resolving Grape dependencies.
For example:
By default, the Grapes subsystem uses an Ivy chained resolver. Each resolver added using@GrabResolver
(name='restlet.org', root='http://maven.restlet.org')@Grab
(group='org.restlet', module='org.restlet', version='1.1.6') class MyRestlet extends org.restlet.Restlet { // ... }
@GrabResolver
is appended to the chain. By default, the grape subsystem is shared globally, so added resolvers will become available for any subsequent grab calls. Dependency resolution follows Ivy's artifact resolution which tries to resolve artifacts in the order specified in the chain of resolvers. Further information about customising grape behavior can be found on the Grape documentation page: http://groovy-lang.org/grape.html.
Element Summary
Type | Name and Description |
---|---|
boolean |
initClass By default, when a @GrabResolver annotation is used, a Grape.addResolver() call is added to the static initializers of the class the annotatable node appears in. |
boolean |
m2Compatible Defaults to Maven2 compatibility. |
String |
name A meaningful name for a repo containing the grape/artifact. |
String |
root The URL for a repo containing the grape/artifact. |
String |
value Allows a shorthand form which sets the name and root to this value. |
Inherited Methods Summary
Methods inherited from class | Name |
---|---|
class Object | wait, wait, wait, equals, toString, hashCode, getClass, notify, notifyAll |
Element Detail
public boolean initClass
By default, when a @GrabResolver
annotation is used, a Grape.addResolver()
call is added to the static initializers of the class the annotatable node appears in. If you wish to disable this, add initClass=false
to the annotation.
- Default:
- true
public boolean m2Compatible
Defaults to Maven2 compatibility. Set false for Ivy only compatibility.
- Default:
- true
public String name
A meaningful name for a repo containing the grape/artifact. A non-empty value is required unless value() is used.
- Default:
- ""
public String root
The URL for a repo containing the grape/artifact. A non-empty value is required unless value() is used.
- Default:
- ""
public String value
Allows a shorthand form which sets the name and root to this value. Must not be used if name() or root() is non-empty.
- Default:
- ""
© 2003-2020 The Apache Software Foundation
Licensed under the Apache license.
https://docs.groovy-lang.org/3.0.7/html/gapi/groovy/lang/GrabResolver.html