Always active default build profile

Update the root build POM so that the default profile is always active.
Prior to this commit the profile was to `activeByDefault` which meant
it was only active if no other profiles were enabled. When running in
Eclipse, the `m2e` profile is active, meaning the default profile was
disabled and `spring-javaformat` setting were not applied.

Closes gh-13900
pull/14003/head
Phillip Webb 6 years ago
parent 24e873cd7c
commit 94ea7d800d

@ -19,7 +19,9 @@
<profile>
<id>default</id>
<activation>
<activeByDefault>true</activeByDefault>
<property>
<name>!disable-spring-boot-default-profile</name>
</property>
</activation>
<properties>
<spring-javaformat.version>0.0.3</spring-javaformat.version>

Loading…
Cancel
Save