Hi, this is my first day with gradle. I'm running : Groovy: 1.8.6 Ant: Apache Ant(TM) version 1.8.4 comiled on May 22 2012 Ivy: 2.2.0 JVM: 1.7.0_11 (Oracle Corporation 23.6-b04) OS: Mac OS X 10.7.5 x86_6
I have the following project layout project/server project/client project/domain project/settings.gradle looks like: include 'domain', 'server', 'client' project/build.gradle looks like: project(':domain') { buildscript { repositories { mavenRepo name: 'clojars', url: 'http://clojars.org/repo' } dependencies { classpath 'clojuresque:clojuresque:1.5.5' } } apply plugin: 'clojure' } project(':server') { apply plugin: 'groovy' } project(':client') { apply plugin: 'groovy' } So I have a multiproject with one clojure and 2 groovy projects: When I run gradle build I get the error : Plugin with id 'clojure' not found. I have guess my build.gradle is faulty. Can somebody help? Many Greetings John -- -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to clojure@googlegroups.com Note that posts from new members are moderated - please be patient with your first post. To unsubscribe from this group, send email to clojure+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/clojure?hl=en