amazon web services - Unable to figure out exhaustive list of Spring integration gradle dependancies for aws -


i'm trying use spring-integration publishing, subscribing sqs. started following gradle dependancies:

compile group: 'org.springframework.cloud', name: 'spring-cloud-aws-messaging', version: '1.0.0.release' compile group: 'org.springframework.integration', name: 'spring-integration-aws', version: '1.0.0.release' 

it complaining about:

classnotfoundexception:org.springframework.cloud. aws.messaging.listener.sqsmessaged‌​eletionpolicy 

i went ahead , added:

compile group: 'org.springframework.cloud', name: 'spring-cloud- starter-aws', version: '1.0.1.release' compile group: 'org.springframework.cloud', name: 'spring-cloud- dependencies', version: 'brixton.release', ext: 'pom' 

and get:

nested exception java.io.filenotfoundexception: class path resource [org/springframework/cloud/aws/jdbc/config/annotation/amazonrdsinstanceconfiguration$abstractregistrar.class] cannot opened because not exist 

i don't use jdbc in project @ think i'm using wrong set of dependancies. doing wrong here? can complete list of transitive dependancies need use?

you should use combination:

compile group: 'org.springframework.integration', name: 'spring-integration-aws', version: '1.0.0.release' compile group: 'org.springframework.cloud', name: 'spring-cloud-aws-messaging', version: '1.1.0.release' 

nothing more far know.

right, spring-cloud-aws-messaging dependency of spring-integration-aws optional, version used spring-integration-aws:1.0.0.release 1.1.0.release, not 1.0.0.release.


Comments

Popular posts from this blog

neo4j - finding mutual friends in a cypher statement starting with three or more persons -

php - How to remove letter in front of the word laravel -

minify - Minimizing css files -