Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
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. |
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
Defaults to Maven2 compatibility. Set false for Ivy only compatibility. @default true
A meaningful name for a repo containing the grape/artifact. A non-empty value is required unless value() is used. @default ""
The URL for a repo containing the grape/artifact. A non-empty value is required unless value() is used. @default ""
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 ""