|
@@ -121,6 +121,24 @@
|
|
|
</dependencies>
|
|
|
<build>
|
|
|
<plugins>
|
|
|
+ <plugin>
|
|
|
+ <groupId>org.codehaus.gmaven</groupId>
|
|
|
+ <artifactId>groovy-maven-plugin</artifactId>
|
|
|
+ <version>2.0</version>
|
|
|
+ <executions>
|
|
|
+ <execution>
|
|
|
+ <phase>package</phase>
|
|
|
+ <goals>
|
|
|
+ <goal>execute</goal>
|
|
|
+ </goals>
|
|
|
+ <configuration>
|
|
|
+ <source>
|
|
|
+ ${project.basedir}/src/main/groovy/test.groovy
|
|
|
+ </source>
|
|
|
+ </configuration>
|
|
|
+ </execution>
|
|
|
+ </executions>
|
|
|
+ </plugin>
|
|
|
<plugin>
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|