./com/google/bitcoin/core/ECKey.java:106: error: no suitable constructor found for DERSequenceGenerator(ASN1OutputStream)
DERSequenceGenerator seq = new DERSequenceGenerator(encoder);
./com/google/bitcoin/core/ECKey.java:109: error: cannot find symbol
seq.addObject(new DERTaggedObject(0, SECNamedCurves.getByName("secp256k1").getDERObject()));
^
symbol: method getDERObject()
location: class X9ECParameters
If you are using ant, then I would recommend converting to Maven.
The MultiBit build was originally ant and (with help) I converted it
to Maven and would never move back.
You can always drop down to ant inside Maven if you have to.
(Puts on tinfoil hat in preparation for flamewar from Maven purists).
:-)
--
http://multibit.org Money, reinvented
In this case, the latest bouncycastle (v1.47) API was not backward compatible with your project's proper dependency (v1.46). Their Porting Guide points out precisely the DER/ASN1 changes from 1.46 that caused my troubles.
Sorry to have taken your time on this, but I appreciate your helpfulness, and look forward to further bitcoinj development.