From this post: http://forums.gradle.org/gradle/topics/dependency_resolution_with_gradle_for_arquillian_tests
Arquillian is a container management solution. In practice, it's usually used in integration tests to bundle up some kind of package (e.g. a test case and associated dependencies) and run it inside a container (usually web container). Though, in theory it's more general than that. Anyway, there's a maven “plugin” for it that lets it read your POM to build up the classpath for the container deployment. That's pretty neat. It would be nice to see a Gradle equivalent. This would be pretty straightforward with the Tooling API. You'd just launch the tooling API, and essentially ask for the project's runtime classpath. Keep it in mind if anyones talking to you about Gradle and mentions Arquillian, as a potential idea for community contribution. It's an interesting usage of the Tooling API. -- Luke Daley Principal Engineer, Gradleware http://gradleware.com --------------------------------------------------------------------- To unsubscribe from this list, please visit: http://xircles.codehaus.org/manage_email
