| Categories | CategoriesGroovy Languages | 
|---|---|
| GroupId | GroupIdorg.codehaus.groovy | 
| ArtifactId | ArtifactIdgroovy | 
| Version | Version2.6.0-alpha-2 | 
| Type | Typejar | 
<!-- https://jarcasting.com/artifacts/org.codehaus.groovy/groovy/ -->
<dependency>
    <groupId>org.codehaus.groovy</groupId>
    <artifactId>groovy</artifactId>
    <version>2.6.0-alpha-2</version>
</dependency>// https://jarcasting.com/artifacts/org.codehaus.groovy/groovy/
implementation 'org.codehaus.groovy:groovy:2.6.0-alpha-2'// https://jarcasting.com/artifacts/org.codehaus.groovy/groovy/
implementation ("org.codehaus.groovy:groovy:2.6.0-alpha-2")'org.codehaus.groovy:groovy:jar:2.6.0-alpha-2'<dependency org="org.codehaus.groovy" name="groovy" rev="2.6.0-alpha-2">
  <artifact name="groovy" type="jar" />
</dependency>@Grapes(
@Grab(group='org.codehaus.groovy', module='groovy', version='2.6.0-alpha-2')
)libraryDependencies += "org.codehaus.groovy" % "groovy" % "2.6.0-alpha-2"[org.codehaus.groovy/groovy "2.6.0-alpha-2"]