Hi,
I just upgraded to Intellij 12 and I am investigating the jasypt (Java Simplified Encryption) library, http://www.jasypt.org/,
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
<version>2.4</version>
<scope>provided</scope>
<!--<optional>true</optional>-->
</dependency>
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcprov-jdk16</artifactId>
<version>1.40</version>
<scope>test</scope>
</dependency>
- and ran the unit test BouncyCastleByProviderStringEncryptorTest in the IDE debugger.
What I found is that when I set a break point in the bouncycastle library constructor class JCEBlockCipher.java or other classes where it should stop at a breakpoint.
The IDE does not stop at the breakpoint inside bouncycastle library.
Please let me know what I am doing wrong...
Thanx in advance
- Young
I believe this worked in Intellij IDE 11