POM文件引入

  1. <!-- https://mvnrepository.com/artifact/org.codehaus.groovy/groovy-all -->
  2. <dependency>
  3. <groupId>org.codehaus.groovy</groupId>
  4. <artifactId>groovy-all</artifactId>
  5. <version>3.0.0-rc-3</version>
  6. <type>pom</type>
  7. </dependency>

groovy文件

  • 新建一个hello.groovy文件 ```groovy

println ‘Hello, world!’

```

然后run就可以

  • 注:如果不引入会报错no groovy library is defined …