Details
-
Improvement
-
Status: Closed
-
Blocker
-
Resolution: Fixed
-
Version 5.0.0
-
None
-
None
Description
Upgrading to xmlbeans 5.0 requires switching to the apache xmlbeans maven plugin from the codehaus xmlbeans maven plugin. This was not possible for us as not all configuration options available in the apache plugin are available in the codehaus plugin. Specifically, we need to ensure that the plugin does not attempt to download resources. After looking at the java source for the plugin we noticed the following commented out lines:
// params.setBaseDir(null); // params.setJavaFiles(new File[0]); // params.setCompiler(null); // params.setMemoryInitialSize(null); // params.setMemoryMaximumSize(null); // params.setOutputJar(null); // params.setDownload(false); // params.setDebug(debug); // params.setExtensions(null);
There may be other problems as well as we weren't able to get very far in our upgrade process. Thanks for all your work in maintaining this project.