Bael 2997 spring boot configuration processor (#7376)

* BAEL-2997: Adding spring boot configuration processor dependency.

* BAEL-2997: Added examples for spring boot configuration processor, simple and nested properties.

* BAEL-2997: Fixed the identation

* BAEL-2997: Formatted the added dependencies

* BAEL-2997: Added version for configuration-processor dependency.
This commit is contained in:
dionisPrifti
2019-07-22 19:53:15 +02:00
committed by maibin
parent 8b2b894bbd
commit da152e53a1
5 changed files with 139 additions and 2 deletions
+13 -2
View File
@@ -38,6 +38,19 @@
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-configuration-processor</artifactId>
<version>2.1.6.RELEASE</version>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.hsqldb</groupId>
<artifactId>hsqldb</artifactId>
<scope>runtime</scope>
</dependency>
</dependencies>
<build>
@@ -50,12 +63,10 @@
</resources>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
</plugin>
</plugins>
</build>