Closed gclitheroe closed 10 years ago
I had to do two changes to get it running:
buildscript { configurations.classpath.exclude group: 'jgrapht', name: 'jgrapht', version: '0.7.3' dependencies { classpath group: 'org.mulesoft.build', name: 'mule-gradle-plugin', version: '1.0.0-SNAPSHOT' classpath group: 'org.mule', name: 'mule-core', version: '3.5.0-M4' }
repositories {
mavenLocal()
}
}
Replaced line 39: old: main = 'org.mule.MuleServer' new: setMain('org.mule.MuleServer')
Reason: The setter does a type conversion
Thank you for the reports. I have fixed this and will push the changes soon.
Hi!
Buildscript (the working one):
buildscript { configurations.classpath.exclude group: 'jgrapht', name: 'jgrapht', version: '0.7.3' dependencies { classpath group: 'org.mulesoft.build', name: 'mule-gradle-plugin', version: '1.0.0-SNAPSHOT' classpath group: 'org.mule', name: 'mule-core', version: '3.5.0-M4' }
repositories { mavenLocal() } }
apply plugin: 'mulestudio'
mule.version = '3.5.0'
2014-04-10 14:46 GMT+02:00 Juan Alberto Lopez Cavallotti < notifications@github.com>:
Thank you for the reports. I have fixed this and will push the changes soon.
Reply to this email directly or view it on GitHubhttps://github.com/mulesoft/mule-gradle-plugin/issues/1#issuecomment-40073354 .
Dr. Roger Butenuth | Senior Java Consultant codecentric AG | Merscheider Straße 1 | 42699 Solingen | Deutschland tel: +49 (0) 212.23362861 | fax: +49 (0) 212.23362879 | mobil: +49 (0) 162.1075309 www.codecentric.de | blog.codecentric.de | www.meettheexperts.de | www.more4fi.de
Sitz der Gesellschaft: Düsseldorf | HRB 63043 | Amtsgericht Düsseldorf Vorstand: Michael Hochgürtel . Mirko Novakovic . Rainer Vehns Aufsichtsrat: Patric Fedlmeier (Vorsitzender) . Bernd Klinkmann . Jürgen Schütz
Diese E-Mail einschließlich evtl. beigefügter Dateien enthält vertrauliche und/oder rechtlich geschützte Informationen. Wenn Sie nicht der richtige Adressat sind oder diese E-Mail irrtümlich erhalten haben, informieren Sie bitte sofort den Absender und löschen Sie diese E-Mail und evtl. beigefügter Dateien umgehend. Das unerlaubte Kopieren, Nutzen oder Öffnen evtl. beigefügter Dateien sowie die unbefugte Weitergabe dieser E-Mail ist nicht gestattet.
Hi,
Great looking plugin - I was just starting down the path of writing something similar when I saw this mentioned in the Mule blog.
At the moment I can't get it to work. I built it and published it to Maven local with Gradle:
when I try to use the plugin in a Mule Gradle project I get an error:
Thanks, Geoff