Author: assaf Date: Wed Apr 18 10:30:00 2007 New Revision: 530097 URL: http://svn.apache.org/viewvc?view=rev&rev=530097 Log: Fixed paths in JBI libs
Modified: incubator/ode/trunk/tasks/jbi.rake Modified: incubator/ode/trunk/tasks/jbi.rake URL: http://svn.apache.org/viewvc/incubator/ode/trunk/tasks/jbi.rake?view=diff&rev=530097&r1=530096&r2=530097 ============================================================================== --- incubator/ode/trunk/tasks/jbi.rake (original) +++ incubator/ode/trunk/tasks/jbi.rake Wed Apr 18 10:30:00 2007 @@ -118,9 +118,9 @@ xml.description component.description end xml.tag!("component-class-name", component.class_name) - xml.tag!("component-class-path") { component.libs.each { |lib| xml.tag! "path-element", lib.to_s } } + xml.tag!("component-class-path") { component.libs.each { |lib| xml.tag! "path-element", File.basename(lib.to_s) } } xml.tag!("bootstrap-class-name", bootstrap.class_name) - xml.tag!("bootstrap-class-path") { bootstrap.libs.each { |lib| xml.tag! "path-element", lib.to_s } } + xml.tag!("bootstrap-class-path") { bootstrap.libs.each { |lib| xml.tag! "path-element", File.basename(lib.to_s) } } end end end