<?xml version="1.0" encoding="UTF-8"?>
<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/maven-v4_0_0.xsd">

    <modelVersion>4.0.0</modelVersion>    

    <parent>
        <groupId>org.mule.tools</groupId>
        <artifactId>apikit-examples</artifactId>
        <version>1.7.5</version>
    </parent>

    <artifactId>apikit-example</artifactId>
    <packaging>pom</packaging>
    <groupId>org.mule.examples</groupId>
    <name>APIkit Example</name>
    <description>Mule APIKit sample application</description>

    <properties>
        <meta.mule.version>mule.version</meta.mule.version>
        <meta.prefix>${</meta.prefix>
        <meta.suffix>}</meta.suffix>
    </properties>

    <build>
        <plugins>
            <plugin>
                <artifactId>maven-assembly-plugin</artifactId>
                <version>2.4</version>
                <executions>
                    <execution>
                        <phase>package</phase>
                        <goals>
                            <goal>single</goal>
                        </goals>
                        <configuration>
                            <finalName>${project.artifactId}</finalName>
                            <appendAssemblyId>false</appendAssemblyId>
                            <descriptors>
                                <descriptor>./desc.xml</descriptor>
                            </descriptors>
                        </configuration>
                    </execution>
                </executions>

            </plugin>
        </plugins>
    </build>

    <dependencies>
        <dependency>
            <groupId>com.googlecode.json-simple</groupId>
            <artifactId>json-simple</artifactId>
        </dependency>
        <dependency>
            <groupId>com.jayway.restassured</groupId>
            <artifactId>rest-assured</artifactId>
            <version>1.8.1</version>
        </dependency>
    </dependencies>

</project>