On 4 March 2013 06:48, Milamber <[email protected]> wrote: > > > Le 03/03/2013 21:44, [email protected] a ecrit : > >> Author: sebb >> Date: Sun Mar 3 21:44:15 2013 >> New Revision: 1452134 >> >> URL: http://svn.apache.org/r1452134 >> Log: >> Update to latest version of Bouncy Castle jars > > > With the new version of BC jars, the compile-components task doesn't works. > > src/components/org/apache/jmeter/assertions/SMIMEAssertion.java:52: package > org.bouncycastle.cms does not exist > [javac] import org.bouncycastle.cms.CMSException; > > Seems have a lot of changes between 1.45 and 1.48... >
Oops - sorry, I'll fix or revert soon. Looks like an extra jar is needed (bcpkix) but that is not the only change required. [Code compiled for me using Eclipse, but I'd overlooked that I had copies of 1.45 jars on the build path.] >> >> Modified: >> jmeter/trunk/build.properties >> >> Modified: jmeter/trunk/build.properties >> URL: >> http://svn.apache.org/viewvc/jmeter/trunk/build.properties?rev=1452134&r1=1452133&r2=1452134&view=diff >> >> ============================================================================== >> --- jmeter/trunk/build.properties (original) >> +++ jmeter/trunk/build.properties Sun Mar 3 21:44:15 2013 >> @@ -57,15 +57,15 @@ beanshell.loc = ${maven2.r >> beanshell.md5 = 02F72336919D06A8491E82346E10B4D5 >> >> # Bouncy Castle jars (compile and test only - not distributed) >> -bcmail.version = 1.45 >> -bcmail.jar = bcmail-jdk15-${bcmail.version}.jar >> -bcmail.loc = >> ${maven2.repo}/org/bouncycastle/bcmail-jdk15/${bcmail.version} >> -bcmail.md5 = 13321fc7eff7bcada7b4fedfb592025c >> - >> -bcprov.version = 1.45 >> -bcprov.jar = bcprov-jdk15-${bcprov.version}.jar >> -bcprov.loc = >> ${maven2.repo}/org/bouncycastle/bcprov-jdk15/${bcprov.version} >> -bcprov.md5 = 2062f8e3d15748443ea60a94b266371c >> +bcmail.version = 1.48 >> +bcmail.jar = bcmail-jdk15on-${bcmail.version}.jar >> +bcmail.loc = >> ${maven2.repo}/org/bouncycastle/bcmail-jdk15on/${bcmail.version} >> +bcmail.md5 = d21564a05cec19caea793f6c63c79b59 >> + >> +bcprov.version = 1.48 >> +bcprov.jar = bcprov-jdk15on-${bcprov.version}.jar >> +bcprov.loc = >> ${maven2.repo}/org/bouncycastle/bcprov-jdk15on/${bcprov.version} >> +bcprov.md5 = c08b58e03da7d469b0e7df6f4dd99712 >> >> commons-codec.version = 1.6 >> commons-codec.jar = commons-codec-${commons-codec.version}.jar >> >> >> >
