fixed JasperReports exporter parameter initialization for multi-format views
This commit is contained in:
parent
310a3a2d71
commit
d27cbee69c
|
|
@ -255,6 +255,13 @@ public abstract class AbstractJasperReportsView extends AbstractUrlBasedView {
|
||||||
return this.exporterParameters;
|
return this.exporterParameters;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Allows subclasses to populate the converted exporter parameters.
|
||||||
|
*/
|
||||||
|
protected void setConvertedExporterParameters(Map<JRExporterParameter, Object> convertedExporterParameters) {
|
||||||
|
this.convertedExporterParameters = convertedExporterParameters;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Allows subclasses to retrieve the converted exporter parameters.
|
* Allows subclasses to retrieve the converted exporter parameters.
|
||||||
*/
|
*/
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
* Copyright 2002-2008 the original author or authors.
|
* Copyright 2002-2009 the original author or authors.
|
||||||
*
|
*
|
||||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
* you may not use this file except in compliance with the License.
|
* you may not use this file except in compliance with the License.
|
||||||
|
|
@ -183,13 +183,10 @@ public class JasperReportsMultiFormatView extends AbstractJasperReportsView {
|
||||||
}
|
}
|
||||||
|
|
||||||
AbstractJasperReportsView view = (AbstractJasperReportsView) BeanUtils.instantiateClass(viewClass);
|
AbstractJasperReportsView view = (AbstractJasperReportsView) BeanUtils.instantiateClass(viewClass);
|
||||||
|
|
||||||
// Copy appropriate properties across.
|
|
||||||
view.setExporterParameters(getExporterParameters());
|
|
||||||
|
|
||||||
// Can skip most initialization since all relevant URL processing
|
// Can skip most initialization since all relevant URL processing
|
||||||
// has been done - just need to convert parameters on the sub view.
|
// has been done - just need to convert parameters on the sub view.
|
||||||
view.convertExporterParameters();
|
view.setExporterParameters(getExporterParameters());
|
||||||
|
view.setConvertedExporterParameters(getConvertedExporterParameters());
|
||||||
|
|
||||||
// Prepare response and render report.
|
// Prepare response and render report.
|
||||||
populateContentDispositionIfNecessary(response, format);
|
populateContentDispositionIfNecessary(response, format);
|
||||||
|
|
|
||||||
|
|
@ -29,6 +29,7 @@ import org.springframework.mock.web.MockHttpServletRequest;
|
||||||
import org.springframework.mock.web.MockHttpServletResponse;
|
import org.springframework.mock.web.MockHttpServletResponse;
|
||||||
import org.springframework.ui.jasperreports.PersonBean;
|
import org.springframework.ui.jasperreports.PersonBean;
|
||||||
import org.springframework.ui.jasperreports.ProductBean;
|
import org.springframework.ui.jasperreports.ProductBean;
|
||||||
|
import org.springframework.util.ClassUtils;
|
||||||
import org.springframework.web.servlet.DispatcherServlet;
|
import org.springframework.web.servlet.DispatcherServlet;
|
||||||
import org.springframework.web.servlet.i18n.AcceptHeaderLocaleResolver;
|
import org.springframework.web.servlet.i18n.AcceptHeaderLocaleResolver;
|
||||||
|
|
||||||
|
|
@ -44,17 +45,8 @@ public abstract class AbstractJasperReportsTests extends TestCase {
|
||||||
|
|
||||||
protected static final String SUB_REPORT_PARENT = "/org/springframework/ui/jasperreports/subReportParent.jrxml";
|
protected static final String SUB_REPORT_PARENT = "/org/springframework/ui/jasperreports/subReportParent.jrxml";
|
||||||
|
|
||||||
protected static boolean canCompileReport;
|
protected static final boolean canCompileReport = ClassUtils.isPresent(
|
||||||
|
"org.eclipse.jdt.internal.compiler.Compiler", AbstractJasperReportsTests.class.getClassLoader());
|
||||||
static {
|
|
||||||
try {
|
|
||||||
Class.forName("org.eclipse.jdt.internal.compiler.Compiler");
|
|
||||||
canCompileReport = true;
|
|
||||||
}
|
|
||||||
catch (ClassNotFoundException ex) {
|
|
||||||
canCompileReport = false;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
protected MockHttpServletRequest request;
|
protected MockHttpServletRequest request;
|
||||||
|
|
|
||||||
|
|
@ -69,7 +69,7 @@ public abstract class AbstractJasperReportsViewTests extends AbstractJasperRepor
|
||||||
if (view instanceof AbstractJasperReportsSingleFormatView &&
|
if (view instanceof AbstractJasperReportsSingleFormatView &&
|
||||||
((AbstractJasperReportsSingleFormatView) view).useWriter()) {
|
((AbstractJasperReportsSingleFormatView) view).useWriter()) {
|
||||||
String output = response.getContentAsString();
|
String output = response.getContentAsString();
|
||||||
assertTrue("Output should contain 'MeineSeite'", output.indexOf("MeineSeite") > -1);
|
assertTrue("Output should contain 'MeineSeite'", output.contains("MeineSeite"));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,279 +1,312 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<module relativePaths="true" type="JAVA_MODULE" version="4">
|
<module relativePaths="true" type="JAVA_MODULE" version="4">
|
||||||
<component name="NewModuleRootManager" inherit-compiler-output="true">
|
<component name="NewModuleRootManager" inherit-compiler-output="true">
|
||||||
<exclude-output />
|
<exclude-output />
|
||||||
<content url="file://$MODULE_DIR$">
|
<content url="file://$MODULE_DIR$">
|
||||||
<sourceFolder url="file://$MODULE_DIR$/src/main/java" isTestSource="false" />
|
<sourceFolder url="file://$MODULE_DIR$/src/main/java" isTestSource="false" />
|
||||||
<sourceFolder url="file://$MODULE_DIR$/src/main/resources" isTestSource="false" />
|
<sourceFolder url="file://$MODULE_DIR$/src/main/resources" isTestSource="false" />
|
||||||
<sourceFolder url="file://$MODULE_DIR$/src/test/java" isTestSource="true" />
|
<sourceFolder url="file://$MODULE_DIR$/src/test/java" isTestSource="true" />
|
||||||
<sourceFolder url="file://$MODULE_DIR$/src/test/resources" isTestSource="true" />
|
<sourceFolder url="file://$MODULE_DIR$/src/test/resources" isTestSource="true" />
|
||||||
<excludeFolder url="file://$MODULE_DIR$/target" />
|
<excludeFolder url="file://$MODULE_DIR$/target" />
|
||||||
</content>
|
</content>
|
||||||
<orderEntry type="sourceFolder" forTests="false" />
|
<orderEntry type="sourceFolder" forTests="false" />
|
||||||
<orderEntry type="inheritedJdk" />
|
<orderEntry type="inheritedJdk" />
|
||||||
<orderEntry type="module" module-name="aop" />
|
<orderEntry type="module" module-name="aop" />
|
||||||
<orderEntry type="module" module-name="beans" />
|
<orderEntry type="module" module-name="beans" />
|
||||||
<orderEntry type="module" module-name="context" />
|
<orderEntry type="module" module-name="context" />
|
||||||
<orderEntry type="module" module-name="context-support" />
|
<orderEntry type="module" module-name="context-support" />
|
||||||
<orderEntry type="module" module-name="core" />
|
<orderEntry type="module" module-name="core" />
|
||||||
<orderEntry type="module" module-name="web" />
|
<orderEntry type="module" module-name="oxm" />
|
||||||
<orderEntry type="module-library">
|
<orderEntry type="module" module-name="web" />
|
||||||
<library>
|
<orderEntry type="module-library">
|
||||||
<CLASSES>
|
<library>
|
||||||
<root url="jar://$IVY_CACHE$/org.apache.commons/com.springsource.org.apache.commons.logging/1.1.1/com.springsource.org.apache.commons.logging-1.1.1.jar!/" />
|
<CLASSES>
|
||||||
</CLASSES>
|
<root url="jar://$IVY_CACHE$/org.apache.commons/com.springsource.org.apache.commons.logging/1.1.1/com.springsource.org.apache.commons.logging-1.1.1.jar!/" />
|
||||||
<JAVADOC />
|
</CLASSES>
|
||||||
<SOURCES>
|
<JAVADOC />
|
||||||
<root url="jar://$IVY_CACHE$/org.apache.commons/com.springsource.org.apache.commons.logging/1.1.1/com.springsource.org.apache.commons.logging-sources-1.1.1.jar!/" />
|
<SOURCES>
|
||||||
</SOURCES>
|
<root url="jar://$IVY_CACHE$/org.apache.commons/com.springsource.org.apache.commons.logging/1.1.1/com.springsource.org.apache.commons.logging-sources-1.1.1.jar!/" />
|
||||||
</library>
|
</SOURCES>
|
||||||
</orderEntry>
|
</library>
|
||||||
<orderEntry type="module-library">
|
</orderEntry>
|
||||||
<library>
|
<orderEntry type="module-library">
|
||||||
<CLASSES>
|
<library>
|
||||||
<root url="jar://$IVY_CACHE$/javax.servlet/com.springsource.javax.servlet.jsp.jstl/1.1.2/com.springsource.javax.servlet.jsp.jstl-1.1.2.jar!/" />
|
<CLASSES>
|
||||||
</CLASSES>
|
<root url="jar://$IVY_CACHE$/javax.servlet/com.springsource.javax.servlet.jsp.jstl/1.1.2/com.springsource.javax.servlet.jsp.jstl-1.1.2.jar!/" />
|
||||||
<JAVADOC />
|
</CLASSES>
|
||||||
<SOURCES>
|
<JAVADOC />
|
||||||
<root url="jar://$IVY_CACHE$/javax.servlet/com.springsource.javax.servlet.jsp.jstl/1.1.2/com.springsource.javax.servlet.jsp.jstl-sources-1.1.2.jar!/" />
|
<SOURCES>
|
||||||
</SOURCES>
|
<root url="jar://$IVY_CACHE$/javax.servlet/com.springsource.javax.servlet.jsp.jstl/1.1.2/com.springsource.javax.servlet.jsp.jstl-sources-1.1.2.jar!/" />
|
||||||
</library>
|
</SOURCES>
|
||||||
</orderEntry>
|
</library>
|
||||||
<orderEntry type="module-library">
|
</orderEntry>
|
||||||
<library>
|
<orderEntry type="module-library">
|
||||||
<CLASSES>
|
<library>
|
||||||
<root url="jar://$IVY_CACHE$/org.freemarker/com.springsource.freemarker/2.3.12/com.springsource.freemarker-2.3.12.jar!/" />
|
<CLASSES>
|
||||||
</CLASSES>
|
<root url="jar://$IVY_CACHE$/org.freemarker/com.springsource.freemarker/2.3.12/com.springsource.freemarker-2.3.12.jar!/" />
|
||||||
<JAVADOC />
|
</CLASSES>
|
||||||
<SOURCES>
|
<JAVADOC />
|
||||||
<root url="jar://$IVY_CACHE$/org.freemarker/com.springsource.freemarker/2.3.12/com.springsource.freemarker-sources-2.3.12.jar!/" />
|
<SOURCES>
|
||||||
</SOURCES>
|
<root url="jar://$IVY_CACHE$/org.freemarker/com.springsource.freemarker/2.3.12/com.springsource.freemarker-sources-2.3.12.jar!/" />
|
||||||
</library>
|
</SOURCES>
|
||||||
</orderEntry>
|
</library>
|
||||||
<orderEntry type="module-library">
|
</orderEntry>
|
||||||
<library>
|
<orderEntry type="module-library">
|
||||||
<CLASSES>
|
<library>
|
||||||
<root url="jar://$IVY_CACHE$/org.apache.velocity/com.springsource.org.apache.velocity/1.5.0/com.springsource.org.apache.velocity-1.5.0.jar!/" />
|
<CLASSES>
|
||||||
</CLASSES>
|
<root url="jar://$IVY_CACHE$/org.apache.velocity/com.springsource.org.apache.velocity/1.5.0/com.springsource.org.apache.velocity-1.5.0.jar!/" />
|
||||||
<JAVADOC />
|
</CLASSES>
|
||||||
<SOURCES>
|
<JAVADOC />
|
||||||
<root url="jar://$IVY_CACHE$/org.apache.velocity/com.springsource.org.apache.velocity/1.5.0/com.springsource.org.apache.velocity-sources-1.5.0.jar!/" />
|
<SOURCES>
|
||||||
</SOURCES>
|
<root url="jar://$IVY_CACHE$/org.apache.velocity/com.springsource.org.apache.velocity/1.5.0/com.springsource.org.apache.velocity-sources-1.5.0.jar!/" />
|
||||||
</library>
|
</SOURCES>
|
||||||
</orderEntry>
|
</library>
|
||||||
<orderEntry type="module-library">
|
</orderEntry>
|
||||||
<library>
|
<orderEntry type="module-library">
|
||||||
<CLASSES>
|
<library>
|
||||||
<root url="jar://$IVY_CACHE$/org.apache.velocity/com.springsource.org.apache.velocity.tools.view/1.4.0/com.springsource.org.apache.velocity.tools.view-1.4.0.jar!/" />
|
<CLASSES>
|
||||||
</CLASSES>
|
<root url="jar://$IVY_CACHE$/org.apache.velocity/com.springsource.org.apache.velocity.tools.view/1.4.0/com.springsource.org.apache.velocity.tools.view-1.4.0.jar!/" />
|
||||||
<JAVADOC />
|
</CLASSES>
|
||||||
<SOURCES>
|
<JAVADOC />
|
||||||
<root url="jar://$IVY_CACHE$/org.apache.velocity/com.springsource.org.apache.velocity.tools.view/1.4.0/com.springsource.org.apache.velocity.tools.view-sources-1.4.0.jar!/" />
|
<SOURCES>
|
||||||
</SOURCES>
|
<root url="jar://$IVY_CACHE$/org.apache.velocity/com.springsource.org.apache.velocity.tools.view/1.4.0/com.springsource.org.apache.velocity.tools.view-sources-1.4.0.jar!/" />
|
||||||
</library>
|
</SOURCES>
|
||||||
</orderEntry>
|
</library>
|
||||||
<orderEntry type="module-library">
|
</orderEntry>
|
||||||
<library>
|
<orderEntry type="module-library">
|
||||||
<CLASSES>
|
<library>
|
||||||
<root url="jar://$IVY_CACHE$/net.sourceforge.jasperreports/com.springsource.net.sf.jasperreports/2.0.5/com.springsource.net.sf.jasperreports-2.0.5.jar!/" />
|
<CLASSES>
|
||||||
</CLASSES>
|
<root url="jar://$IVY_CACHE$/net.sourceforge.jasperreports/com.springsource.net.sf.jasperreports/2.0.5/com.springsource.net.sf.jasperreports-2.0.5.jar!/" />
|
||||||
<JAVADOC />
|
</CLASSES>
|
||||||
<SOURCES>
|
<JAVADOC />
|
||||||
<root url="jar://$IVY_CACHE$/net.sourceforge.jasperreports/com.springsource.net.sf.jasperreports/2.0.5/com.springsource.net.sf.jasperreports-sources-2.0.5.jar!/" />
|
<SOURCES>
|
||||||
</SOURCES>
|
<root url="jar://$IVY_CACHE$/net.sourceforge.jasperreports/com.springsource.net.sf.jasperreports/2.0.5/com.springsource.net.sf.jasperreports-sources-2.0.5.jar!/" />
|
||||||
</library>
|
</SOURCES>
|
||||||
</orderEntry>
|
</library>
|
||||||
<orderEntry type="module-library">
|
</orderEntry>
|
||||||
<library>
|
<orderEntry type="module-library">
|
||||||
<CLASSES>
|
<library>
|
||||||
<root url="jar://$IVY_CACHE$/net.sourceforge.jexcelapi/com.springsource.jxl/2.6.6/com.springsource.jxl-2.6.6.jar!/" />
|
<CLASSES>
|
||||||
</CLASSES>
|
<root url="jar://$IVY_CACHE$/net.sourceforge.jexcelapi/com.springsource.jxl/2.6.6/com.springsource.jxl-2.6.6.jar!/" />
|
||||||
<JAVADOC />
|
</CLASSES>
|
||||||
<SOURCES>
|
<JAVADOC />
|
||||||
<root url="jar://$IVY_CACHE$/net.sourceforge.jexcelapi/com.springsource.jxl/2.6.6/com.springsource.jxl-sources-2.6.6.jar!/" />
|
<SOURCES>
|
||||||
</SOURCES>
|
<root url="jar://$IVY_CACHE$/net.sourceforge.jexcelapi/com.springsource.jxl/2.6.6/com.springsource.jxl-sources-2.6.6.jar!/" />
|
||||||
</library>
|
</SOURCES>
|
||||||
</orderEntry>
|
</library>
|
||||||
<orderEntry type="module-library">
|
</orderEntry>
|
||||||
<library>
|
<orderEntry type="module-library">
|
||||||
<CLASSES>
|
<library>
|
||||||
<root url="jar://$IVY_CACHE$/org.apache.poi/com.springsource.org.apache.poi/3.0.2.FINAL/com.springsource.org.apache.poi-3.0.2.FINAL.jar!/" />
|
<CLASSES>
|
||||||
</CLASSES>
|
<root url="jar://$IVY_CACHE$/org.apache.poi/com.springsource.org.apache.poi/3.0.2.FINAL/com.springsource.org.apache.poi-3.0.2.FINAL.jar!/" />
|
||||||
<JAVADOC />
|
</CLASSES>
|
||||||
<SOURCES>
|
<JAVADOC />
|
||||||
<root url="jar://$IVY_CACHE$/org.apache.poi/com.springsource.org.apache.poi/3.0.2.FINAL/com.springsource.org.apache.poi-sources-3.0.2.FINAL.jar!/" />
|
<SOURCES>
|
||||||
</SOURCES>
|
<root url="jar://$IVY_CACHE$/org.apache.poi/com.springsource.org.apache.poi/3.0.2.FINAL/com.springsource.org.apache.poi-sources-3.0.2.FINAL.jar!/" />
|
||||||
</library>
|
</SOURCES>
|
||||||
</orderEntry>
|
</library>
|
||||||
<orderEntry type="module-library">
|
</orderEntry>
|
||||||
<library>
|
<orderEntry type="module-library">
|
||||||
<CLASSES>
|
<library>
|
||||||
<root url="jar://$IVY_CACHE$/org.apache.commons/com.springsource.org.apache.commons.fileupload/1.2.0/com.springsource.org.apache.commons.fileupload-1.2.0.jar!/" />
|
<CLASSES>
|
||||||
</CLASSES>
|
<root url="jar://$IVY_CACHE$/org.apache.commons/com.springsource.org.apache.commons.fileupload/1.2.0/com.springsource.org.apache.commons.fileupload-1.2.0.jar!/" />
|
||||||
<JAVADOC />
|
</CLASSES>
|
||||||
<SOURCES>
|
<JAVADOC />
|
||||||
<root url="jar://$IVY_CACHE$/org.apache.commons/com.springsource.org.apache.commons.fileupload/1.2.0/com.springsource.org.apache.commons.fileupload-sources-1.2.0.jar!/" />
|
<SOURCES>
|
||||||
</SOURCES>
|
<root url="jar://$IVY_CACHE$/org.apache.commons/com.springsource.org.apache.commons.fileupload/1.2.0/com.springsource.org.apache.commons.fileupload-sources-1.2.0.jar!/" />
|
||||||
</library>
|
</SOURCES>
|
||||||
</orderEntry>
|
</library>
|
||||||
<orderEntry type="module-library">
|
</orderEntry>
|
||||||
<library>
|
<orderEntry type="module-library">
|
||||||
<CLASSES>
|
<library>
|
||||||
<root url="jar://$IVY_CACHE$/org.junit/com.springsource.org.junit/4.5.0/com.springsource.org.junit-4.5.0.jar!/" />
|
<CLASSES>
|
||||||
</CLASSES>
|
<root url="jar://$IVY_CACHE$/org.junit/com.springsource.org.junit/4.5.0/com.springsource.org.junit-4.5.0.jar!/" />
|
||||||
<JAVADOC />
|
</CLASSES>
|
||||||
<SOURCES>
|
<JAVADOC />
|
||||||
<root url="jar://$IVY_CACHE$/org.junit/com.springsource.org.junit/4.5.0/com.springsource.org.junit-sources-4.5.0.jar!/" />
|
<SOURCES>
|
||||||
</SOURCES>
|
<root url="jar://$IVY_CACHE$/org.junit/com.springsource.org.junit/4.5.0/com.springsource.org.junit-sources-4.5.0.jar!/" />
|
||||||
</library>
|
</SOURCES>
|
||||||
</orderEntry>
|
</library>
|
||||||
<orderEntry type="module-library">
|
</orderEntry>
|
||||||
<library>
|
<orderEntry type="module-library">
|
||||||
<CLASSES>
|
<library>
|
||||||
<root url="jar://$IVY_CACHE$/org.apache.tiles/com.springsource.org.apache.tiles/2.0.5/com.springsource.org.apache.tiles-2.0.5.jar!/" />
|
<CLASSES>
|
||||||
</CLASSES>
|
<root url="jar://$IVY_CACHE$/org.apache.tiles/com.springsource.org.apache.tiles/2.0.5/com.springsource.org.apache.tiles-2.0.5.jar!/" />
|
||||||
<JAVADOC />
|
</CLASSES>
|
||||||
<SOURCES>
|
<JAVADOC />
|
||||||
<root url="jar://$IVY_CACHE$/org.apache.tiles/com.springsource.org.apache.tiles/2.0.5/com.springsource.org.apache.tiles-sources-2.0.5.jar!/" />
|
<SOURCES>
|
||||||
</SOURCES>
|
<root url="jar://$IVY_CACHE$/org.apache.tiles/com.springsource.org.apache.tiles/2.0.5/com.springsource.org.apache.tiles-sources-2.0.5.jar!/" />
|
||||||
</library>
|
</SOURCES>
|
||||||
</orderEntry>
|
</library>
|
||||||
<orderEntry type="module-library">
|
</orderEntry>
|
||||||
<library>
|
<orderEntry type="module-library">
|
||||||
<CLASSES>
|
<library>
|
||||||
<root url="jar://$IVY_CACHE$/org.apache.tiles/com.springsource.org.apache.tiles.core/2.0.5.osgi/com.springsource.org.apache.tiles.core-2.0.5.osgi.jar!/" />
|
<CLASSES>
|
||||||
</CLASSES>
|
<root url="jar://$IVY_CACHE$/org.apache.tiles/com.springsource.org.apache.tiles.core/2.0.5.osgi/com.springsource.org.apache.tiles.core-2.0.5.osgi.jar!/" />
|
||||||
<JAVADOC />
|
</CLASSES>
|
||||||
<SOURCES>
|
<JAVADOC />
|
||||||
<root url="jar://$IVY_CACHE$/org.apache.tiles/com.springsource.org.apache.tiles.core/2.0.5.osgi/com.springsource.org.apache.tiles.core-sources-2.0.5.osgi.jar!/" />
|
<SOURCES>
|
||||||
</SOURCES>
|
<root url="jar://$IVY_CACHE$/org.apache.tiles/com.springsource.org.apache.tiles.core/2.0.5.osgi/com.springsource.org.apache.tiles.core-sources-2.0.5.osgi.jar!/" />
|
||||||
</library>
|
</SOURCES>
|
||||||
</orderEntry>
|
</library>
|
||||||
<orderEntry type="module-library">
|
</orderEntry>
|
||||||
<library>
|
<orderEntry type="module-library">
|
||||||
<CLASSES>
|
<library>
|
||||||
<root url="jar://$IVY_CACHE$/org.apache.tiles/com.springsource.org.apache.tiles.jsp/2.0.5/com.springsource.org.apache.tiles.jsp-2.0.5.jar!/" />
|
<CLASSES>
|
||||||
</CLASSES>
|
<root url="jar://$IVY_CACHE$/org.apache.tiles/com.springsource.org.apache.tiles.jsp/2.0.5/com.springsource.org.apache.tiles.jsp-2.0.5.jar!/" />
|
||||||
<JAVADOC />
|
</CLASSES>
|
||||||
<SOURCES>
|
<JAVADOC />
|
||||||
<root url="jar://$IVY_CACHE$/org.apache.tiles/com.springsource.org.apache.tiles.jsp/2.0.5/com.springsource.org.apache.tiles.jsp-sources-2.0.5.jar!/" />
|
<SOURCES>
|
||||||
</SOURCES>
|
<root url="jar://$IVY_CACHE$/org.apache.tiles/com.springsource.org.apache.tiles.jsp/2.0.5/com.springsource.org.apache.tiles.jsp-sources-2.0.5.jar!/" />
|
||||||
</library>
|
</SOURCES>
|
||||||
</orderEntry>
|
</library>
|
||||||
<orderEntry type="module-library">
|
</orderEntry>
|
||||||
<library>
|
<orderEntry type="module-library">
|
||||||
<CLASSES>
|
<library>
|
||||||
<root url="jar://$IVY_CACHE$/com.lowagie.text/com.springsource.com.lowagie.text/2.0.8/com.springsource.com.lowagie.text-2.0.8.jar!/" />
|
<CLASSES>
|
||||||
</CLASSES>
|
<root url="jar://$IVY_CACHE$/com.lowagie.text/com.springsource.com.lowagie.text/2.0.8/com.springsource.com.lowagie.text-2.0.8.jar!/" />
|
||||||
<JAVADOC />
|
</CLASSES>
|
||||||
<SOURCES>
|
<JAVADOC />
|
||||||
<root url="jar://$IVY_CACHE$/com.lowagie.text/com.springsource.com.lowagie.text/2.0.8/com.springsource.com.lowagie.text-sources-2.0.8.jar!/" />
|
<SOURCES>
|
||||||
</SOURCES>
|
<root url="jar://$IVY_CACHE$/com.lowagie.text/com.springsource.com.lowagie.text/2.0.8/com.springsource.com.lowagie.text-sources-2.0.8.jar!/" />
|
||||||
</library>
|
</SOURCES>
|
||||||
</orderEntry>
|
</library>
|
||||||
<orderEntry type="module-library">
|
</orderEntry>
|
||||||
<library>
|
<orderEntry type="module-library">
|
||||||
<CLASSES>
|
<library>
|
||||||
<root url="jar://$IVY_CACHE$/javax.servlet/com.springsource.javax.servlet/2.5.0/com.springsource.javax.servlet-2.5.0.jar!/" />
|
<CLASSES>
|
||||||
</CLASSES>
|
<root url="jar://$IVY_CACHE$/javax.servlet/com.springsource.javax.servlet/2.5.0/com.springsource.javax.servlet-2.5.0.jar!/" />
|
||||||
<JAVADOC />
|
</CLASSES>
|
||||||
<SOURCES>
|
<JAVADOC />
|
||||||
<root url="jar://$IVY_CACHE$/javax.servlet/com.springsource.javax.servlet/2.5.0/com.springsource.javax.servlet-sources-2.5.0.jar!/" />
|
<SOURCES>
|
||||||
</SOURCES>
|
<root url="jar://$IVY_CACHE$/javax.servlet/com.springsource.javax.servlet/2.5.0/com.springsource.javax.servlet-sources-2.5.0.jar!/" />
|
||||||
</library>
|
</SOURCES>
|
||||||
</orderEntry>
|
</library>
|
||||||
<orderEntry type="module-library">
|
</orderEntry>
|
||||||
<library>
|
<orderEntry type="module-library">
|
||||||
<CLASSES>
|
<library>
|
||||||
<root url="jar://$IVY_CACHE$/com.sun.syndication/com.springsource.com.sun.syndication/0.9.0/com.springsource.com.sun.syndication-0.9.0.jar!/" />
|
<CLASSES>
|
||||||
</CLASSES>
|
<root url="jar://$IVY_CACHE$/com.sun.syndication/com.springsource.com.sun.syndication/0.9.0/com.springsource.com.sun.syndication-0.9.0.jar!/" />
|
||||||
<JAVADOC />
|
</CLASSES>
|
||||||
<SOURCES>
|
<JAVADOC />
|
||||||
<root url="jar://$IVY_CACHE$/com.sun.syndication/com.springsource.com.sun.syndication/0.9.0/com.springsource.com.sun.syndication-sources-0.9.0.jar!/" />
|
<SOURCES>
|
||||||
</SOURCES>
|
<root url="jar://$IVY_CACHE$/com.sun.syndication/com.springsource.com.sun.syndication/0.9.0/com.springsource.com.sun.syndication-sources-0.9.0.jar!/" />
|
||||||
</library>
|
</SOURCES>
|
||||||
</orderEntry>
|
</library>
|
||||||
<orderEntry type="module-library">
|
</orderEntry>
|
||||||
<library>
|
<orderEntry type="module-library">
|
||||||
<CLASSES>
|
<library>
|
||||||
<root url="jar://$IVY_CACHE$/org.easymock/com.springsource.org.easymock/2.3.0/com.springsource.org.easymock-2.3.0.jar!/" />
|
<CLASSES>
|
||||||
</CLASSES>
|
<root url="jar://$IVY_CACHE$/org.easymock/com.springsource.org.easymock/2.3.0/com.springsource.org.easymock-2.3.0.jar!/" />
|
||||||
<JAVADOC />
|
</CLASSES>
|
||||||
<SOURCES>
|
<JAVADOC />
|
||||||
<root url="jar://$IVY_CACHE$/org.easymock/com.springsource.org.easymock/2.3.0/com.springsource.org.easymock-sources-2.3.0.jar!/" />
|
<SOURCES>
|
||||||
</SOURCES>
|
<root url="jar://$IVY_CACHE$/org.easymock/com.springsource.org.easymock/2.3.0/com.springsource.org.easymock-sources-2.3.0.jar!/" />
|
||||||
</library>
|
</SOURCES>
|
||||||
</orderEntry>
|
</library>
|
||||||
<orderEntry type="module-library">
|
</orderEntry>
|
||||||
<library>
|
<orderEntry type="module-library">
|
||||||
<CLASSES>
|
<library>
|
||||||
<root url="jar://$IVY_CACHE$/org.aopalliance/com.springsource.org.aopalliance/1.0.0/com.springsource.org.aopalliance-1.0.0.jar!/" />
|
<CLASSES>
|
||||||
</CLASSES>
|
<root url="jar://$IVY_CACHE$/org.aopalliance/com.springsource.org.aopalliance/1.0.0/com.springsource.org.aopalliance-1.0.0.jar!/" />
|
||||||
<JAVADOC />
|
</CLASSES>
|
||||||
<SOURCES />
|
<JAVADOC />
|
||||||
</library>
|
<SOURCES />
|
||||||
</orderEntry>
|
</library>
|
||||||
<orderEntry type="module-library">
|
</orderEntry>
|
||||||
<library>
|
<orderEntry type="module-library">
|
||||||
<CLASSES>
|
<library>
|
||||||
<root url="jar://$IVY_CACHE$/org.custommonkey.xmlunit/com.springsource.org.custommonkey.xmlunit/1.2.0/com.springsource.org.custommonkey.xmlunit-1.2.0.jar!/" />
|
<CLASSES>
|
||||||
</CLASSES>
|
<root url="jar://$IVY_CACHE$/org.custommonkey.xmlunit/com.springsource.org.custommonkey.xmlunit/1.2.0/com.springsource.org.custommonkey.xmlunit-1.2.0.jar!/" />
|
||||||
<JAVADOC />
|
</CLASSES>
|
||||||
<SOURCES>
|
<JAVADOC />
|
||||||
<root url="jar://$IVY_CACHE$/org.custommonkey.xmlunit/com.springsource.org.custommonkey.xmlunit/1.2.0/com.springsource.org.custommonkey.xmlunit-sources-1.2.0.jar!/" />
|
<SOURCES>
|
||||||
</SOURCES>
|
<root url="jar://$IVY_CACHE$/org.custommonkey.xmlunit/com.springsource.org.custommonkey.xmlunit/1.2.0/com.springsource.org.custommonkey.xmlunit-sources-1.2.0.jar!/" />
|
||||||
</library>
|
</SOURCES>
|
||||||
</orderEntry>
|
</library>
|
||||||
<orderEntry type="module-library">
|
</orderEntry>
|
||||||
<library>
|
<orderEntry type="module-library">
|
||||||
<CLASSES>
|
<library>
|
||||||
<root url="jar://$IVY_CACHE$/org.dom4j/com.springsource.org.dom4j/1.6.1/com.springsource.org.dom4j-1.6.1.jar!/" />
|
<CLASSES>
|
||||||
</CLASSES>
|
<root url="jar://$IVY_CACHE$/org.dom4j/com.springsource.org.dom4j/1.6.1/com.springsource.org.dom4j-1.6.1.jar!/" />
|
||||||
<JAVADOC />
|
</CLASSES>
|
||||||
<SOURCES>
|
<JAVADOC />
|
||||||
<root url="jar://$IVY_CACHE$/org.dom4j/com.springsource.org.dom4j/1.6.1/com.springsource.org.dom4j-sources-1.6.1.jar!/" />
|
<SOURCES>
|
||||||
</SOURCES>
|
<root url="jar://$IVY_CACHE$/org.dom4j/com.springsource.org.dom4j/1.6.1/com.springsource.org.dom4j-sources-1.6.1.jar!/" />
|
||||||
</library>
|
</SOURCES>
|
||||||
</orderEntry>
|
</library>
|
||||||
<orderEntry type="module-library">
|
</orderEntry>
|
||||||
<library>
|
<orderEntry type="module-library">
|
||||||
<CLASSES>
|
<library>
|
||||||
<root url="jar://$IVY_CACHE$/org.apache.taglibs/com.springsource.org.apache.taglibs.standard/1.1.2/com.springsource.org.apache.taglibs.standard-1.1.2.jar!/" />
|
<CLASSES>
|
||||||
</CLASSES>
|
<root url="jar://$IVY_CACHE$/org.apache.taglibs/com.springsource.org.apache.taglibs.standard/1.1.2/com.springsource.org.apache.taglibs.standard-1.1.2.jar!/" />
|
||||||
<JAVADOC />
|
</CLASSES>
|
||||||
<SOURCES>
|
<JAVADOC />
|
||||||
<root url="jar://$IVY_CACHE$/org.apache.taglibs/com.springsource.org.apache.taglibs.standard/1.1.2/com.springsource.org.apache.taglibs.standard-sources-1.1.2.jar!/" />
|
<SOURCES>
|
||||||
</SOURCES>
|
<root url="jar://$IVY_CACHE$/org.apache.taglibs/com.springsource.org.apache.taglibs.standard/1.1.2/com.springsource.org.apache.taglibs.standard-sources-1.1.2.jar!/" />
|
||||||
</library>
|
</SOURCES>
|
||||||
</orderEntry>
|
</library>
|
||||||
<orderEntry type="module-library">
|
</orderEntry>
|
||||||
<library>
|
<orderEntry type="module-library">
|
||||||
<CLASSES>
|
<library>
|
||||||
<root url="jar://$IVY_CACHE$/javax.servlet/com.springsource.javax.servlet.jsp/2.1.0/com.springsource.javax.servlet.jsp-2.1.0.jar!/" />
|
<CLASSES>
|
||||||
</CLASSES>
|
<root url="jar://$IVY_CACHE$/javax.servlet/com.springsource.javax.servlet.jsp/2.1.0/com.springsource.javax.servlet.jsp-2.1.0.jar!/" />
|
||||||
<JAVADOC />
|
</CLASSES>
|
||||||
<SOURCES>
|
<JAVADOC />
|
||||||
<root url="jar://$IVY_CACHE$/javax.servlet/com.springsource.javax.servlet.jsp/2.1.0/com.springsource.javax.servlet.jsp-sources-2.1.0.jar!/" />
|
<SOURCES>
|
||||||
</SOURCES>
|
<root url="jar://$IVY_CACHE$/javax.servlet/com.springsource.javax.servlet.jsp/2.1.0/com.springsource.javax.servlet.jsp-sources-2.1.0.jar!/" />
|
||||||
</library>
|
</SOURCES>
|
||||||
</orderEntry>
|
</library>
|
||||||
<orderEntry type="module-library">
|
</orderEntry>
|
||||||
<library>
|
<orderEntry type="module-library">
|
||||||
<CLASSES>
|
<library>
|
||||||
<root url="jar://$IVY_CACHE$/javax.el/com.springsource.javax.el/1.0.0/com.springsource.javax.el-1.0.0.jar!/" />
|
<CLASSES>
|
||||||
</CLASSES>
|
<root url="jar://$IVY_CACHE$/javax.el/com.springsource.javax.el/1.0.0/com.springsource.javax.el-1.0.0.jar!/" />
|
||||||
<JAVADOC />
|
</CLASSES>
|
||||||
<SOURCES>
|
<JAVADOC />
|
||||||
<root url="jar://$IVY_CACHE$/javax.el/com.springsource.javax.el/1.0.0/com.springsource.javax.el-sources-1.0.0.jar!/" />
|
<SOURCES>
|
||||||
</SOURCES>
|
<root url="jar://$IVY_CACHE$/javax.el/com.springsource.javax.el/1.0.0/com.springsource.javax.el-sources-1.0.0.jar!/" />
|
||||||
</library>
|
</SOURCES>
|
||||||
</orderEntry>
|
</library>
|
||||||
<orderEntry type="module" module-name="oxm" />
|
</orderEntry>
|
||||||
</component>
|
<orderEntry type="module-library">
|
||||||
<component name="copyright">
|
<library>
|
||||||
<Base>
|
<CLASSES>
|
||||||
<setting name="state" value="1" />
|
<root url="jar://$IVY_CACHE$/org.apache.commons/com.springsource.org.apache.commons.beanutils/1.7.0/com.springsource.org.apache.commons.beanutils-1.7.0.jar!/" />
|
||||||
</Base>
|
</CLASSES>
|
||||||
</component>
|
<JAVADOC />
|
||||||
</module>
|
<SOURCES>
|
||||||
|
<root url="jar://$IVY_CACHE$/org.apache.commons/com.springsource.org.apache.commons.beanutils/1.7.0/com.springsource.org.apache.commons.beanutils-sources-1.7.0.jar!/" />
|
||||||
|
</SOURCES>
|
||||||
|
</library>
|
||||||
|
</orderEntry>
|
||||||
|
<orderEntry type="module-library">
|
||||||
|
<library>
|
||||||
|
<CLASSES>
|
||||||
|
<root url="jar://$IVY_CACHE$/org.apache.commons/com.springsource.org.apache.commons.digester/1.8.0/com.springsource.org.apache.commons.digester-1.8.0.jar!/" />
|
||||||
|
</CLASSES>
|
||||||
|
<JAVADOC />
|
||||||
|
<SOURCES>
|
||||||
|
<root url="jar://$IVY_CACHE$/org.apache.commons/com.springsource.org.apache.commons.digester/1.8.0/com.springsource.org.apache.commons.digester-sources-1.8.0.jar!/" />
|
||||||
|
</SOURCES>
|
||||||
|
</library>
|
||||||
|
</orderEntry>
|
||||||
|
<orderEntry type="module-library">
|
||||||
|
<library>
|
||||||
|
<CLASSES>
|
||||||
|
<root url="jar://$IVY_CACHE$/org.eclipse.jdt/com.springsource.org.eclipse.jdt.core.compiler.batch/3.3.0/com.springsource.org.eclipse.jdt.core.compiler.batch-3.3.0.jar!/" />
|
||||||
|
</CLASSES>
|
||||||
|
<JAVADOC />
|
||||||
|
<SOURCES>
|
||||||
|
<root url="jar://$IVY_CACHE$/org.eclipse.jdt/com.springsource.org.eclipse.jdt.core.compiler.batch/3.3.0/com.springsource.org.eclipse.jdt.core.compiler.batch-sources-3.3.0.jar!/" />
|
||||||
|
</SOURCES>
|
||||||
|
</library>
|
||||||
|
</orderEntry>
|
||||||
|
</component>
|
||||||
|
<component name="copyright">
|
||||||
|
<Base>
|
||||||
|
<setting name="state" value="1" />
|
||||||
|
</Base>
|
||||||
|
</component>
|
||||||
|
</module>
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue