12 lines
216 B
Groovy
12 lines
216 B
Groovy
plugins {
|
|
id 'application'
|
|
}
|
|
|
|
apply plugin: 'application'
|
|
mainClassName = 'employee.EmployeeApp'
|
|
|
|
println 'This is executed during configuration phase'
|
|
task configured {
|
|
println 'The project is configured'
|
|
}
|