Skip to content

Instantly share code, notes, and snippets.

@dandiep
Created April 8, 2011 21:42
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 dandiep/910803 to your computer and use it in GitHub Desktop.
Save dandiep/910803 to your computer and use it in GitHub Desktop.
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.mulesoft.ion</groupId>
<artifactId>testcli</artifactId>
<name>Test CLI tools</name>
<version>1.0</version>
<dependencies>
<dependency>
<groupId>com.mulesoft</groupId>
<artifactId>mule-jockey</artifactId>
<version>1.0-beta-1</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>com.mulesoft</groupId>
<artifactId>mule-jockey-maven-plugin</artifactId>
<version>1.0-beta-1</version>
<configuration>
<distributionName>test-tools-${version}</distributionName>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>generate</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment