You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by dj...@apache.org on 2009/08/08 21:18:47 UTC

svn commit: r802439 - /geronimo/server/trunk/pom.xml

Author: djencks
Date: Sat Aug  8 19:18:47 2009
New Revision: 802439

URL: http://svn.apache.org/viewvc?rev=802439&view=rev
Log:
GERONIMO-4763, make plugin work on ibm jdks, thanks to Shawn Jiang for the patch

Modified:
    geronimo/server/trunk/pom.xml

Modified: geronimo/server/trunk/pom.xml
URL: http://svn.apache.org/viewvc/geronimo/server/trunk/pom.xml?rev=802439&r1=802438&r2=802439&view=diff
==============================================================================
--- geronimo/server/trunk/pom.xml (original)
+++ geronimo/server/trunk/pom.xml Sat Aug  8 19:18:47 2009
@@ -2141,6 +2141,16 @@
                         <dest>target/classes</dest>
                         <src>src/main/i18n-resources</src>
                     </configuration>
+                    <dependencies>
+                        <dependency>
+                            <groupId>com.sun</groupId>
+                            <artifactId>tools</artifactId>
+                            <!--the real JDK version could be 1.5 or 1.6-->
+                            <version>1.5.0</version>
+                            <scope>system</scope>
+                            <systemPath>${java.home}/../lib/tools.jar</systemPath>
+                        </dependency>
+                    </dependencies>
                     <executions>
                         <execution>
                             <id>native2ascii-utf8</id>