You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by fm...@apache.org on 2008/02/04 15:08:32 UTC

svn commit: r618288 - /incubator/sling/trunk/scripting/resolver/pom.xml

Author: fmeschbe
Date: Mon Feb  4 06:08:31 2008
New Revision: 618288

URL: http://svn.apache.org/viewvc?rev=618288&view=rev
Log:
SLING-217 Use non-standard -Xbootclasspath/p option for compilation to
prepend BSF 3 API library in front of the standard boot class path.

Modified:
    incubator/sling/trunk/scripting/resolver/pom.xml

Modified: incubator/sling/trunk/scripting/resolver/pom.xml
URL: http://svn.apache.org/viewvc/incubator/sling/trunk/scripting/resolver/pom.xml?rev=618288&r1=618287&r2=618288&view=diff
==============================================================================
--- incubator/sling/trunk/scripting/resolver/pom.xml (original)
+++ incubator/sling/trunk/scripting/resolver/pom.xml Mon Feb  4 06:08:31 2008
@@ -96,20 +96,14 @@
                     </execution>
                 </executions>
             </plugin>
-<!-- 
-            Disable for now as this doesn't work on Mac OS X
             <plugin>
                 <groupId>org.apache.maven.plugins</groupId>
                 <artifactId>maven-compiler-plugin</artifactId>
                 <configuration>
-                    <compilerArguments>
-                        <bootclasspath>
-                            ${project.build.directory}/dependency/bsf-api.jar:${java.home}/lib/rt.jar
-                        </bootclasspath>
-                    </compilerArguments>
+                    <!-- Reported to work on Linux, Windows, Mac OSX -->
+                    <compilerArgument>-Xbootclasspath/p:${project.build.directory}/dependency/bsf-api.jar</compilerArgument>
                 </configuration>
             </plugin>
- -->
         </plugins>
     </build>