devtools

Hi, I added the devtools to my pom.xml.

Now I try to disable them via

					<plugin>
						<groupId>org.springframework.boot</groupId>
						<artifactId>spring-boot-maven-plugin</artifactId>
						<configuration>
							<excludeDevtools>true</excludeDevtools>
							<jvmArguments>-Dvaadin.productionMode</jvmArguments>
						</configuration>
					</plugin>

in the production profile. But when I run mvn spring-boot:run -Dvaadin.productionMode, devtools are still running and restarting my app.