I am using Spring-Boot v1.3.0.M5 with Maven v3.3.3. I used to be able to run my Spring Boot (boot) application from the console with this command.
mvn clean pa
As described in the documentation mvn spring-boot:run adds src/main/resources in front of your classpath to support hot reload by default. You can turn this off easily
mvn spring-boot:run
src/main/resources
... ... org.springframework.boot spring-boot-maven-plugin 1.2.7.RELEASE false ... ...