Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
1.3.5
-
None
-
None
Description
Will Rogers reported on the users@ mailing list,
http://mail-archives.apache.org/mod_mbox/buildr-users/201003.mbox/%3C323a37201003021637p1c518967w5012e796774b6903@mail.gmail.com%3E
I'm using 'buildr/xmlbeans' and 'compile_xml_beans _(:source, :main,
:xsd)' in my project definition.
1. I'm observing a similar problem to the one I reported yesterday
with the resources task. I edited one of my files in src/main/xsd and
ran "buildr package". Output:
Building myproject
Running XMLBeans schema compiler
←[34mredefining Project←[0m
Time to build schema type system: 1.727 seconds
Time to generate code: 12.038 seconds
Compiling myproject into C:/blah/myproject/target/classes
Note: Some input files use unchecked or unsafe operations.
Note: Recompile with -Xlint:unchecked for details.
Packaging myproject
Running integration tests...
←[32mCompleted in 1m2.352s←[0m
NOTE: myproject.jar was NOT updated. I checked target/classes and
verified that the XMLBeans were recompiled and have newer modified
dates than the jar. Shouldn't that trigger the package task
reassembling the jar? Can anyone verify this?
2. Adding a brand new file to src/main/xsd is not detected by the
XMLBeans support at all. I did a "buildr clean package", copied a new
XSD into src/main/xsd, and then did a "buildr package". Output:
Building myproject
Packaging myproject
Running integration tests...
←[32mCompleted in 2.723s←[0m
Schema generation did not run, compile did not run, and packaging did
not run. The new file was ignored.