Skip to content

Instantly share code, notes, and snippets.

@albinkjellin
Created January 22, 2012 21:26
Show Gist options
  • Save albinkjellin/1658898 to your computer and use it in GitHub Desktop.
Save albinkjellin/1658898 to your computer and use it in GitHub Desktop.
Intacct Maven Dependency
<!-- Instructs Maven to include this module in your Mule application -->
<plugins>
<plugin>
<groupId>org.mule.tools</groupId>
<artifactId>maven-mule-plugin</artifactId>
<version>1.6</version>
<extensions>true</extensions>
<configuration>
<copyToAppsDirectory>true</copyToAppsDirectory>
<inclusions>
<inclusion>
<groupId>org.mule.modules</groupId>
<artifactId>mule-module-intacct</artifactId>
</inclusion>
</inclusions>
</configuration>
</plugin>
</plugins>
<!-- Add dependency to the Intacct Module-->
<dependency>
<groupId>org.mule.modules</groupId>
<artifactId>mule-module-intacct</artifactId>
<version>2.4</version>
</dependency>
<!-- Instructs Maven where to find this dependency -->
<repository>
<id>muleforge-repo-release</id>
<name>MuleForge Repository Release</name>
<url>https://repository.mulesoft.org/nexus/content/repositories/releases</url>
<layout>default</layout>
</repository>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment