* BAEL-773 - Ratpack with Groovy * BAEL-773 - Ratpack with Groovy - PR review changes * BAEL-773 - Ratpack with Groovy - PR review changes * Typo corrected * SQLs capitalised
13 lines
261 B
Groovy
13 lines
261 B
Groovy
package com.baeldung;
|
|
|
|
public class RatpackGroovyApp {
|
|
|
|
public static void main(String[] args) {
|
|
File file = new File("src/main/groovy/com/baeldung/Ratpack.groovy");
|
|
def shell = new GroovyShell()
|
|
shell.evaluate(file)
|
|
}
|
|
|
|
}
|
|
|