You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@felix.apache.org by cl...@apache.org on 2013/10/02 19:46:32 UTC

svn commit: r1528577 - /felix/trunk/ipojo/runtime/distributions/ten-minutes-tutorial/pom.xml

Author: clement
Date: Wed Oct  2 17:46:31 2013
New Revision: 1528577

URL: http://svn.apache.org/r1528577
Log:
Fix error in the 10 minutes tutorial package generation : the java.home was not correctly set.

Modified:
    felix/trunk/ipojo/runtime/distributions/ten-minutes-tutorial/pom.xml

Modified: felix/trunk/ipojo/runtime/distributions/ten-minutes-tutorial/pom.xml
URL: http://svn.apache.org/viewvc/felix/trunk/ipojo/runtime/distributions/ten-minutes-tutorial/pom.xml?rev=1528577&r1=1528576&r2=1528577&view=diff
==============================================================================
--- felix/trunk/ipojo/runtime/distributions/ten-minutes-tutorial/pom.xml (original)
+++ felix/trunk/ipojo/runtime/distributions/ten-minutes-tutorial/pom.xml Wed Oct  2 17:46:31 2013
@@ -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>