dion        2003/07/29 00:04:02

  Modified:    src/java/org/apache/maven/jelly JellyUtils.java
  Log:
  Jellyutils didn't pass the classloader onto the parser and hence the compile was 
failing
  
  Revision  Changes    Path
  1.14      +2 -1      maven/src/java/org/apache/maven/jelly/JellyUtils.java
  
  Index: JellyUtils.java
  ===================================================================
  RCS file: /home/cvs/maven/src/java/org/apache/maven/jelly/JellyUtils.java,v
  retrieving revision 1.13
  retrieving revision 1.14
  diff -u -r1.13 -r1.14
  --- JellyUtils.java   28 Jul 2003 23:57:52 -0000      1.13
  +++ JellyUtils.java   29 Jul 2003 07:04:02 -0000      1.14
  @@ -193,6 +193,7 @@
           XMLReader reader = factory.newSAXParser().getXMLReader();
           XMLParser parser = new XMLParser( reader );
           parser.setContext( context );
  +        parser.setClassLoader( context.getClassLoader() );
   
           Script script = null;
   
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to