Reputation: 16375
I am trying to integrate Spring Social for Android in a non maven application. Can anyone help me by pointing up the complete list of jar files that i require to integrate this into my Android application ? Doing this by trial and error is getting quite cumbersome, as i have to match various jar files with their respective versions ?
Upvotes: 1
Views: 228
Reputation: 173
take a look on http://mvnrepository.com/artifact/org.springframework.social/spring-social-core/1.0.3.RELEASE
This artifact depends on ...
Group Artifact Version
org.apache.httpcomponents httpclient 4.2.3
org.springframework.security spring-security-crypto 3.1.3.RELEASE
org.springframework spring-jdbc 3.1.4.RELEASE
org.springframework spring-web 3.1.4.RELEASE
you may manually build (recursively looking into all depencencies) dependency list and download all required jars
Upvotes: 1