You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Document workaround for Grapes bug GROOVY-7613 in the user manual.
When using a Groovy version older than 2.4.7 there is a Grape bug causes this error when groovy scripts have a @Grab annotation: java.lang.ClassNotFoundException: # Licensed to the Apache Software Foundation (ASF) under one or more.
Document the below workaround in the user manual:
@Grab('info.picocli:picocli:2.1.0-SNAPSHOT')
@GrabExclude('org.codehaus.groovy:groovy-all') // work around GROOVY-7613
The text was updated successfully, but these errors were encountered:
Document workaround for Grapes bug GROOVY-7613 in the user manual.
When using a Groovy version older than 2.4.7 there is a Grape bug causes this error when groovy scripts have a
@Grab
annotation:java.lang.ClassNotFoundException: # Licensed to the Apache Software Foundation (ASF) under one or more
.Document the below workaround in the user manual:
The text was updated successfully, but these errors were encountered: