Skip to content

Instantly share code, notes, and snippets.

@rhoegg
Created March 18, 2013 16:58
Show Gist options
  • Save rhoegg/5188776 to your computer and use it in GitHub Desktop.
Save rhoegg/5188776 to your computer and use it in GitHub Desktop.
Mule Studio 3.4 with m2e
notes on getting m2e to work in studio 3.4:
1. Needed to use settings.xml mirrors to avoid dev.ee.mulesource.com. This is coming from muleesb-3.4-M3.pom.
<mirrors>
<mirror>
<id>mule-ee-proxy</id>
<name>Hack to not use dev.ee.mulesource.com</name>
<url>https://repository.mulesoft.org/releases/</url>
<mirrorOf>mule-ee-releases,mule-ee-snapshots,libs-releases,ext-releases</mirrorOf>
</mirror>
</mirrors>
2. licm-1.1.3-RC1.jar not available in public repos. Had to install locally out of Mule Studio boot directory: mvn install:install-file -Dfile=licm-1.1.3-RC1.jar -DgroupId=com.mulesoft.licm -DartifactId=licm -Dversion=1.1.3-RC1 -Dpackaging=jar
@iragsdale
Copy link

Thanks, Ryan. Super helpful setting up a new machine. :)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment