This plugin is published to the Sonatype OSS Repository and therefor, is available from maven central. No special repository configuration is required.
<plugin>
<groupId>org.vromero</groupId>
<artifactId>gist-maven-plugin</artifactId>
<version>1.0.0</version>
<configuration>
<username>MyUserName</username>
<password>myp4ssw0rd!</password>
<outputDir>${project.build.directory}/gists</outputDir>
<gists>
<gist>
<correlationStrategy>DESCRIPTION</correlationStrategy>
<description>${mule.documentation.version}_message-sources_flowWithPoll</description>
<public>true</public>
<files>
<file>
<location>src/main/app/message-sources.xml</location>
<snippetId>flowWithPoll</snippetId>
<gistFileName>${mule.documentation.version}_message-sources_flowWithPoll</gistFileName>
</file>
</files>
</gist>
</gists>
</configuration>
</plugin>