I have a springboot application and am trying to run it using Run as Configuration with the goal spring-boot: run
But i get the following error Could not find goal '' in plugin org.springframework.boot:spring-boot-maven-plugin:1.5.7.RELEASE among available goals build-info, help, repackage, run, start, stop -> [Help 1]
I updated the spring boot maven plugin to include goal.
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>repackage</goal>
</goals>
</execution>
</executions>