Hi all,
I've created a small Mule/Maven project. When I run 'mvn package' on the POM, I get the following error:
Missing:
----------
1) org.mule.modules:mule-module-http:jar:2.2.1
Try downloading the file manually from the project website.
Then, install it using the command:
mvn install:install-file -DgroupId=org.mule.modules -DartifactId=mule-module-http -Dversion=2.2.1 -Dpackaging=jar -Dfile=/path/to/file
Does anyone know the correct repository (or plugins) to use in my POM for Mule? I am currently using these:
<repositories>
<repository>
<id>codehaus-repo</id>
<name>Codehaus Repository</name>
<url>http://dist.codehaus.org/mule/dependencies/maven2</url>
<layout>default</layout>
</repository>
<repository>
<id>muleforge-repo</id>
<name>MuleForge Repository</name>
<url>http://repository.muleforge.org</url>
<layout>default</layout>
</repository>
<repository>
<id>codehaus-repo</id>
<name>Codehaus Repository</name>
<url>http://dist.codehaus.org/mule/dependencies/maven2</url>
<layout>default</layout>
</repository>
</repositories>
Can anyone suggest a repository?
Thanks,
David