Repository: camel
Updated Branches:
  refs/heads/master 5eb64737e -> d7416d3f4


Fixed mvn warning.


Project: http://git-wip-us.apache.org/repos/asf/camel/repo
Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/d7416d3f
Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/d7416d3f
Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/d7416d3f

Branch: refs/heads/master
Commit: d7416d3f4b5f26f8a2111866b533370baf968613
Parents: 5eb6473
Author: Claus Ibsen <davscl...@apache.org>
Authored: Fri Dec 2 09:50:15 2016 +0100
Committer: Claus Ibsen <davscl...@apache.org>
Committed: Fri Dec 2 09:50:15 2016 +0100

----------------------------------------------------------------------
 .../pom.xml                                     | 149 ++++++++++---------
 1 file changed, 75 insertions(+), 74 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/camel/blob/d7416d3f/examples/camel-example-spring-boot-live-reload/pom.xml
----------------------------------------------------------------------
diff --git a/examples/camel-example-spring-boot-live-reload/pom.xml 
b/examples/camel-example-spring-boot-live-reload/pom.xml
index 03e1886..4cc43cd 100644
--- a/examples/camel-example-spring-boot-live-reload/pom.xml
+++ b/examples/camel-example-spring-boot-live-reload/pom.xml
@@ -18,89 +18,90 @@
 <project xmlns="http://maven.apache.org/POM/4.0.0"; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/maven-v4_0_0.xsd";>
 
-    <modelVersion>4.0.0</modelVersion>
+  <modelVersion>4.0.0</modelVersion>
 
-    <parent>
-        <groupId>org.apache.camel</groupId>
-        <artifactId>examples</artifactId>
-        <version>2.19.0-SNAPSHOT</version>
-    </parent>
-
-    <artifactId>camel-example-spring-boot-live-reload</artifactId>
-    <name>Camel :: Example :: Spring Boot Live Reload</name>
-    <description>An example showing how to use the live reload feature of 
Spring Boot with Camel</description>
+  <parent>
+    <groupId>org.apache.camel</groupId>
+    <artifactId>examples</artifactId>
+    <version>2.19.0-SNAPSHOT</version>
+  </parent>
 
-    <properties>
-        <spring.boot-version>${spring-boot-version}</spring.boot-version>
-    </properties>
+  <artifactId>camel-example-spring-boot-live-reload</artifactId>
+  <name>Camel :: Example :: Spring Boot Live Reload</name>
+  <description>An example showing how to use the live reload feature of Spring 
Boot with Camel</description>
 
-    <!-- import Spring-Boot and Camel BOM -->
-    <dependencyManagement>
-        <dependencies>
-            <dependency>
-                <groupId>org.springframework.boot</groupId>
-                <artifactId>spring-boot-dependencies</artifactId>
-                <version>${spring.boot-version}</version>
-                <type>pom</type>
-                <scope>import</scope>
-            </dependency>
-            <dependency>
-                <groupId>org.apache.camel</groupId>
-                <artifactId>camel-spring-boot-dependencies</artifactId>
-                <version>${project.version}</version>
-                <type>pom</type>
-                <scope>import</scope>
-            </dependency>
-        </dependencies>
-    </dependencyManagement>
+  <properties>
+    <spring.boot-version>${spring-boot-version}</spring.boot-version>
+  </properties>
 
+  <!-- import Spring-Boot and Camel BOM -->
+  <dependencyManagement>
     <dependencies>
+      <dependency>
+        <groupId>org.springframework.boot</groupId>
+        <artifactId>spring-boot-dependencies</artifactId>
+        <version>${spring.boot-version}</version>
+        <type>pom</type>
+        <scope>import</scope>
+      </dependency>
+      <dependency>
+        <groupId>org.apache.camel</groupId>
+        <artifactId>camel-spring-boot-dependencies</artifactId>
+        <version>${project.version}</version>
+        <type>pom</type>
+        <scope>import</scope>
+      </dependency>
+    </dependencies>
+  </dependencyManagement>
 
-        <!-- Spring-Boot -->
-        <dependency>
-            <groupId>org.springframework.boot</groupId>
-            <artifactId>spring-boot-starter</artifactId>
-        </dependency>
-        <dependency>
-            <groupId>org.springframework.boot</groupId>
-            <artifactId>spring-boot-devtools</artifactId>
-            <optional>true</optional>
-        </dependency>
+  <dependencies>
 
-        <!-- Camel -->
-        <dependency>
-            <groupId>org.apache.camel</groupId>
-            <artifactId>camel-spring-boot-starter</artifactId>
-        </dependency>
-        <dependency>
-            <groupId>org.apache.camel</groupId>
-            <artifactId>camel-jetty-starter</artifactId>
-        </dependency>
+    <!-- Spring-Boot -->
+    <dependency>
+      <groupId>org.springframework.boot</groupId>
+      <artifactId>spring-boot-starter</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.springframework.boot</groupId>
+      <artifactId>spring-boot-devtools</artifactId>
+      <optional>true</optional>
+    </dependency>
 
-        <!-- Test -->
-        <dependency>
-            <groupId>org.springframework.boot</groupId>
-            <artifactId>spring-boot-starter-test</artifactId>
-            <scope>test</scope>
-        </dependency>
-        <dependency>
-            <groupId>org.apache.camel</groupId>
-            <artifactId>camel-test</artifactId>
-            <scope>test</scope>
-        </dependency>
+    <!-- Camel -->
+    <dependency>
+      <groupId>org.apache.camel</groupId>
+      <artifactId>camel-spring-boot-starter</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.camel</groupId>
+      <artifactId>camel-jetty-starter</artifactId>
+    </dependency>
 
-    </dependencies>
+    <!-- Test -->
+    <dependency>
+      <groupId>org.springframework.boot</groupId>
+      <artifactId>spring-boot-starter-test</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.camel</groupId>
+      <artifactId>camel-test</artifactId>
+      <scope>test</scope>
+    </dependency>
+
+  </dependencies>
 
-    <build>
-        <plugins>
-            <plugin>
-                <groupId>org.springframework.boot</groupId>
-                <artifactId>spring-boot-maven-plugin</artifactId>
-                <configuration>
-                    <fork>true</fork>
-                </configuration>
-            </plugin>
-        </plugins>
-    </build>
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>org.springframework.boot</groupId>
+        <artifactId>spring-boot-maven-plugin</artifactId>
+        <version>${spring-boot-version}</version>
+        <configuration>
+          <fork>true</fork>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
 
 </project>

Reply via email to