POM文件引入
<!-- https://mvnrepository.com/artifact/org.codehaus.groovy/groovy-all --><dependency><groupId>org.codehaus.groovy</groupId><artifactId>groovy-all</artifactId><version>3.0.0-rc-3</version><type>pom</type></dependency>
groovy文件
- 新建一个hello.groovy文件 ```groovy
println ‘Hello, world!’
```
然后run就可以
- 注:如果不引入会报错no groovy library is defined …
