views:

206

answers:

2

i cant find source code for spring security ntlm 2.04 ntlm.jar source code. any ideas where can i get this old release?

+2  A: 

It's in the zip file here: http://sourceforge.net/projects/springframework/files/spring-security/2.0.4/spring-security-2.0.4.zip/download (filename: spring-security-ntlm-2.0.4-sources.jar)

simon
+1  A: 

It's also in the Maven central repository:

http://repo2.maven.org/maven2/org/springframework/security/spring-security-ntlm/2.0.4/spring-security-ntlm-2.0.4-sources.jar

So you can either download it from there or automatically add it your IDE if you're using Maven to generate your IDE files (e.g. using "mvn eclipse:eclipse").

And of course, since it's an Open Source project you can get it from the source repository:

svn checkout https://src.springsource.org/svn/spring-security/tags/spring-security-parent-2.0.4/
Munkymisheen