You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by ha...@apache.org on 2011/01/20 10:33:41 UTC

svn commit: r1061177 - /geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.st.v30.core/src/main/java/org/apache/geronimo/st/v30/core/GeronimoServerRuntimeTargetHandler.java

Author: hanhongfang
Date: Thu Jan 20 09:33:40 2011
New Revision: 1061177

URL: http://svn.apache.org/viewvc?rev=1061177&view=rev
Log:
GERONIMODEVTOOLS-699 Correct serveral bundle locations in server runtime library 

Modified:
    geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.st.v30.core/src/main/java/org/apache/geronimo/st/v30/core/GeronimoServerRuntimeTargetHandler.java

Modified: geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.st.v30.core/src/main/java/org/apache/geronimo/st/v30/core/GeronimoServerRuntimeTargetHandler.java
URL: http://svn.apache.org/viewvc/geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.st.v30.core/src/main/java/org/apache/geronimo/st/v30/core/GeronimoServerRuntimeTargetHandler.java?rev=1061177&r1=1061176&r2=1061177&view=diff
==============================================================================
--- geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.st.v30.core/src/main/java/org/apache/geronimo/st/v30/core/GeronimoServerRuntimeTargetHandler.java (original)
+++ geronimo/devtools/eclipse-plugin/trunk/plugins/org.apache.geronimo.st.v30.core/src/main/java/org/apache/geronimo/st/v30/core/GeronimoServerRuntimeTargetHandler.java Thu Jan 20 09:33:40 2011
@@ -142,16 +142,14 @@ public class GeronimoServerRuntimeTarget
             if (version.startsWith("3.0")) {
                  //TODO: review list here when server 3.0 is ready
                  IPath javaMailSpec = runtime.getLocation().append("repository/org/apache/geronimo/javamail/geronimo-javamail_1.4_mail/");
-                 IPath jabxImplSpec = runtime.getLocation().append("repository/com/sun/xml/bind/jaxb-impl/");
-                 IPath jstlSpec     = runtime.getLocation().append("repository/javax/servlet/jstl");
-                 IPath myfacesSpec  = runtime.getLocation().append("repository/org/apache/myfaces/core/myfaces-api/");
-                 IPath myfacesImplSpec  = runtime.getLocation().append("repository/org/apache/myfaces/core/myfaces-impl/");
+                 IPath jabxImplSpec = runtime.getLocation().append("repository/org/apache/geronimo/bundles/jaxb-impl");
+                 IPath jstlSpec     = runtime.getLocation().append("repository/org/apache/geronimo/bundles/jstl");
+                 IPath myfacesSpec  = runtime.getLocation().append("repository/org/apache/myfaces/core/myfaces-bundle/");
                  IPath jdbcSpec     = runtime.getLocation().append("repository/org/apache/geronimo/framework/geronimo-jdbc/");
                  addLibraryEntries(list, javaMailSpec.toFile(), true);               
                  addLibraryEntries(list, jabxImplSpec.toFile(), true);
                  addLibraryEntries(list, jstlSpec.toFile(),     true);
                  addLibraryEntries(list, myfacesSpec.toFile(),  true);
-                 addLibraryEntries(list, myfacesImplSpec.toFile(),  true);
                  addLibraryEntries(list, jdbcSpec.toFile(),     true);
             }
         }