Table of Contents

Groovy - Import

About

Language - (Import|Include|Require) in Groovy

Automatic

All these packages and classes are imported by default, i.e. you do not have to use an explicit import statement to use them:

Manual

With Groovy - Grape Dependency Manager

// Qualified notation
@Grab(group='org.springframework', module='spring-orm', version='3.2.5.RELEASE')
import org.springframework.jdbc.core.JdbcTemplate


// Shorthand notation
@Grab('org.springframework:spring-orm:3.2.5.RELEASE')
import org.springframework.jdbc.core.JdbcTemplate