22 lines
471 B
XML
22 lines
471 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!-- tag::application-arguments[] -->
|
|
<project>
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
<configuration>
|
|
<arguments>
|
|
<argument>property1</argument>
|
|
<argument>property2=${my.value}</argument>
|
|
</arguments>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project>
|
|
<!-- end::application-arguments[] -->
|
|
|
|
|