Hi!
I have a problem running the Grails Activiti Plugin with Grails 2.3.9
I created an empty Grails Project from scratch, and then added the plugin to my BuildConfig.groovy:
plugins {
compile ":activiti:5.12.1"
}
After that I tried to run the project with the generated run configuration, and also with 'grails activiti-quickstart'
I get this error in both cases:
| Error Resolve error obtaining dependencies: The following artifacts could not be resolved: org.activiti:activiti-engine:jar:5.12.1, org.activiti:activiti-spring:jar:5.12.1: Could not find artifact org.activiti:activiti-engine:jar:5.12.1 in grailsCentral (
http://repo.grails.org/grails/plugins) (Use --stacktrace to see the full trace)
| Error Resolve error obtaining dependencies: The following artifacts could not be resolved: org.activiti:activiti-engine:jar:5.12.1, org.activiti:activiti-spring:jar:5.12.1: Could not find artifact org.activiti:activiti-engine:jar:5.12.1 in grailsCentral (
http://repo.grails.org/grails/plugins) (Use --stacktrace to see the full trace)
| Error Resolve error obtaining dependencies: Could not find artifact org.activiti:activiti-engine:jar:5.12.1 in grailsCentral (
http://repo.grails.org/grails/plugins) (Use --stacktrace to see the full trace)
| Run 'grails dependency-report' for further information.
Seems like it can't resolve the dependencies:
org.activiti:activiti-engine:jar:5.12.1
org.activiti:activiti-spring:jar:5.12.1
These previous threads discuss the same problem, but with previous versions, and I have not been able to resolve the problem with the information provided in them.
https://groups.google.com/forum/#!topic/grails-activiti-plugin/S6JXEwJaFLk
Any ideas?
Joel