Add spring developer tools
authorAleksandra Maciaga <aleksandra.maciaga@nokia.com>
Mon, 17 Feb 2020 15:01:58 +0000 (16:01 +0100)
committerAleksandra Maciaga <aleksandra.maciaga@nokia.com>
Tue, 18 Feb 2020 11:44:43 +0000 (12:44 +0100)
Issue-ID: AAF-997
Signed-off-by: Aleksandra Maciaga <aleksandra.maciaga@nokia.com>
Change-Id: I86f9b41efa4157650149290c91509325d5bad7ca

certService/README.md
certService/pom.xml

index 443390b..d133e9a 100644 (file)
@@ -18,6 +18,12 @@ More information about the project and all its functionalities you can find unde
      mvn spring-boot:run
 
     ```
+    
+### Running Locally with Developer Tools
+    ```
+     mvn spring-boot:run -Pdev
+
+    ```
 
 ### Project building
     ```
index a8a5296..2064d58 100644 (file)
     </build>
 
     <profiles>
+        <profile>
+            <id>dev</id>
+            <dependencies>
+                <dependency>
+                    <groupId>org.springframework.boot</groupId>
+                    <artifactId>spring-boot-devtools</artifactId>
+                    <optional>true</optional>
+                </dependency>
+            </dependencies>
+        </profile>
         <profile>
             <id>docker-staging</id>
             <properties>