Skip to content

Instantly share code, notes, and snippets.

@ludo1026
Last active August 29, 2015 14:22
Show Gist options
  • Save ludo1026/a97a5540b1514978fa1e to your computer and use it in GitHub Desktop.
Save ludo1026/a97a5540b1514978fa1e to your computer and use it in GitHub Desktop.
Maven & Yeoman - Profile Dev
<profiles>
<profile>
<id>dev</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<arguments>
<argument>--spring.profiles.active=dev</argument>
</arguments>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment