Try adding repackage goal to execution goals.
Otherwise you would need to call the plugin explicitly as mvn package spring-boot:repackage.
With the goal added, you have to call only mvn package.
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<mainClass>com.places.Main</mainClass>
</configuration>
<executions>
<execution>
<goals>
<goal>repackage</goal>
</goals>
</execution>
</executions>
</plugin>