Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
1.3
-
None
Description
In http://incubator.apache.org/buildr/packaging.html#packaging_wars , the sample code showing how to remove dependencies is adding a dependency instead.
===== from site [begin] ==================
- Remove an artifact from the existing set:
package(:war).libs += artifacts(LOG4J)
===== from site [end] ==================
Should be:
package(:war).libs -= artifacts(LOG4J)