Skip to content

Instantly share code, notes, and snippets.

@poorna2786
Last active March 29, 2019 13:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save poorna2786/7580ab324b4117d6b73444b89ac6cefa to your computer and use it in GitHub Desktop.
Save poorna2786/7580ab324b4117d6b73444b89ac6cefa to your computer and use it in GitHub Desktop.
Maven Dependencies
....
<plugins>
<plugin>
<groupId>org.mule.tools.maven</groupId>
<artifactId>mule-app-maven-plugin</artifactId>
<version>${mule.tools.version}</version>
<extensions>true</extensions>
<configuration>
<copyToAppsDirectory>true</copyToAppsDirectory>
<inclusions>
<inclusion>
<groupId>org.mule.modules</groupId>
<artifactId>mule-module-s3</artifactId>
</inclusion>
<inclusion>
<groupId>org.mule.modules</groupId>
<artifactId>mule-module-sqs</artifactId>
</inclusion>
</inclusions>
</configuration>
</plugin>
...
...
</plugins>
...
...
...
<dependencies>
<dependency>
<groupId>org.mule.modules</groupId>
<artifactId>mule-module-s3</artifactId>
<version>4.2.0</version>
</dependency>
<dependency>
<groupId>org.mule.modules</groupId>
<artifactId>mule-module-sqs</artifactId>
<version>4.2.1</version>
</dependency>
...
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment