You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@karaf.apache.org by cs...@apache.org on 2016/05/09 14:48:36 UTC

[17/35] karaf-boot git commit: Switch to JDK 8

Switch to JDK 8

Project: http://git-wip-us.apache.org/repos/asf/karaf-boot/repo
Commit: http://git-wip-us.apache.org/repos/asf/karaf-boot/commit/7f6469ee
Tree: http://git-wip-us.apache.org/repos/asf/karaf-boot/tree/7f6469ee
Diff: http://git-wip-us.apache.org/repos/asf/karaf-boot/diff/7f6469ee

Branch: refs/heads/master
Commit: 7f6469eea5c0434ed441bb0a546dc1ef58de6aec
Parents: 222b024
Author: Guillaume Nodet <gn...@apache.org>
Authored: Fri Apr 15 16:38:44 2016 +0200
Committer: Guillaume Nodet <gn...@apache.org>
Committed: Fri Apr 15 16:38:44 2016 +0200

----------------------------------------------------------------------
 pom.xml | 14 ++++++++++++++
 1 file changed, 14 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/karaf-boot/blob/7f6469ee/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index afd1bd6..5e1e5c8 100644
--- a/pom.xml
+++ b/pom.xml
@@ -47,6 +47,19 @@
         <!-- TODO complete library demos -->
     </modules>
 
+    <build>
+        <plugins>
+            <plugin>
+                <artifactId>maven-compiler-plugin</artifactId>
+                <inherited>true</inherited>
+                <configuration>
+                    <source>1.8</source>
+                    <target>1.8</target>
+                </configuration>
+            </plugin>
+        </plugins>
+    </build>
+
     <profiles>
         <profile>
             <id>samples</id>
@@ -61,6 +74,7 @@
                 <module>karaf-boot-samples/karaf-boot-sample-service-provider-blueprint</module>
                 <module>karaf-boot-samples/karaf-boot-sample-service-consumer-blueprint</module>
                 <!-- cdi -->
+                <module>karaf-boot-samples/karaf-boot-sample-cdi</module>
                 <!-- shell -->
                 <module>karaf-boot-samples/karaf-boot-sample-shell</module>
                 <!-- config -->