Fix error in the 10 minutes tutorial package generation : the java.home was not correctly set.

git-svn-id: https://svn.apache.org/repos/asf/felix/trunk@1528577 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/ipojo/runtime/distributions/ten-minutes-tutorial/pom.xml b/ipojo/runtime/distributions/ten-minutes-tutorial/pom.xml
index 2ab81ae..c0767b6 100644
--- a/ipojo/runtime/distributions/ten-minutes-tutorial/pom.xml
+++ b/ipojo/runtime/distributions/ten-minutes-tutorial/pom.xml
@@ -79,6 +79,9 @@
                         </configuration>
                     </execution>
                 </executions>
+
+                <dependencies>
+              </dependencies>
             </plugin>
 
             <!--
@@ -166,6 +169,15 @@
                         </goals>
                     </execution>
                 </executions>
+                <dependencies>
+               <dependency>
+                    <groupId>com.sun</groupId>
+                    <artifactId>tools</artifactId>
+                    <version>1.7.0</version>
+                    <scope>system</scope>
+                    <systemPath>${java.home}/../lib/tools.jar</systemPath>
+                </dependency>
+            </dependencies>
             </plugin>
             <plugin>
                 <groupId>org.codehaus.mojo</groupId>