You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by da...@apache.org on 2016/06/07 12:50:35 UTC

[7/8] camel git commit: Experiment with generating spring-boot auto configuration for the Camel components.

Experiment with generating spring-boot auto configuration for the Camel components.


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

Branch: refs/heads/boot-generate
Commit: ee8351566cbeab4da2e3e562f57045f904bd5639
Parents: cac6eb1
Author: Claus Ibsen <da...@apache.org>
Authored: Tue Jun 7 14:11:38 2016 +0200
Committer: Claus Ibsen <da...@apache.org>
Committed: Tue Jun 7 14:11:38 2016 +0200

----------------------------------------------------------------------
 components/pom.xml | 18 ++++++++----------
 1 file changed, 8 insertions(+), 10 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/camel/blob/ee835156/components/pom.xml
----------------------------------------------------------------------
diff --git a/components/pom.xml b/components/pom.xml
index f087d41..892c564 100644
--- a/components/pom.xml
+++ b/components/pom.xml
@@ -334,22 +334,20 @@
       </activation>
 
       <dependencies>
-        <!-- enable the APT processors -->
+        <!-- enable Camel APT processors -->
         <dependency>
           <groupId>org.apache.camel</groupId>
           <artifactId>apt</artifactId>
           <version>${project.version}</version>
           <scope>provided</scope>
         </dependency>
-
-    <!-- spring-boot auto configuration APT processor -->
-    <dependency>
-      <groupId>org.springframework.boot</groupId>
-      <artifactId>spring-boot-configuration-processor</artifactId>
-      <optional>true</optional>
-      <version>${spring-boot-version}</version>
-    </dependency>
-
+        <!-- enable Spring Boot configuration APT processor -->
+        <dependency>
+          <groupId>org.springframework.boot</groupId>
+          <artifactId>spring-boot-configuration-processor</artifactId>
+          <version>${spring-boot-version}</version>
+          <optional>provided</optional>
+        </dependency>
       </dependencies>
     </profile>
   </profiles>