Details
-
Task
-
Status: Closed
-
Major
-
Resolution: Fixed
-
None
-
None
-
None
Description
We cannot ship javacc 4.0 because of licensing restrictions:
------------------
You acknowledge that this software is not designed, licensed or
intended for use in the design, construction, operation or maintenance
of any nuclear facility.
------------------
We also removed javamail/activation from the stage folder because we cannot ship their poms and they are simply used to run tests.
There is a javacc-4.1d1 release (4 Jun 2008) that is licensed under the standard BSD license. I gave it a try and our tests pass. I had to change one thing because jjtree 4.1 creates jj files in a different folder.
Index: build.xml
===================================================================
- <arg line="-output_directory=${build.src}/org/apache/jsieve/parser/generated ${build.src}/sieve.jj"/>
+ <arg line="-output_directory=${build.src}/org/apache/jsieve/parser/generated ${build.src}/org/apache/jsieve/parser/generated/sieve.jj"/>
- <arg line="-output_directory=${build.src}/org/apache/jsieve/parser/generated/address ${build.src}/AddressListParser.jj"/>
+ <arg line="-output_directory=${build.src}/org/apache/jsieve/parser/generated/address ${build.src}/org/apache/jsieve/parser/generated/address/AddressListParser.jj"/>
===================================================================