Following the solution of my prev question at: cant import resources
I managed finally to overcome the properties configuration after trying to integrate spring-batch-admin
However now I get different error:
..
java.lang.NoClassDefFoundError: org/springframework/integration/MessagingException
at java.lang.Class.getDeclaredMethods0(Native Method)
at java.lang.Class.privateGetDeclaredMethods(Class.java:2615)
This is my gradle script:
dependencies {
compile('org.springframework.batch:spring-batch-integration:3.0.1.RELEASE')
compile("org.springframework.batch:spring-batch-admin-manager:1.3.1.RELEASE"){
exclude module: 'slf4j-log4j12'
exclude module: 'slf4j-api'
}
compile("org.springframework.boot:spring-boot-starter-batch:1.2.2.RELEASE
..
So I guess I am having some version collisions between the two.
This already consumed long time for me. any idea if there easy solution to over come before giving up on this?
Thanks, ray.