Hi,
I would like to see somewhere in the documentation (please correct me if I am wrong) a listing of the maven dependencies you can use for the spring modules libs etc.
At this moment I am trying to find out a dependency for spring security (org.springframework.security.providers.encoding.P laintextPasswordEncoder) and it is nowhere to be found.
I would like to see a page with something like this:
Without such a listing is is a living hell to find out what you need, besides scouring the internet for examples. And the examples never have that lib configured you need or give no mention at all of the lib usage.Code:<!-- Some short explanation of this dependency --> <dependency> <groupId>org.springframework.security</groupId> <artifactId>spring-security-web</artifactId> <version>3.0.0.M2</version> </dependency> <!-- Some short explanation of this dependency --> <dependency> <groupId>org.springframework.security</groupId> <artifactId>spring-security-core</artifactId> <version>3.0.0.M2</version> </dependency> etc............. for all maven dependencies.
Kind regards,
Marc


Reply With Quote