<?xml version=${doubleQuote}1.0${doubleQuote} encoding=${doubleQuote}UTF-8${doubleQuote}?>
<project xmlns=${doubleQuote}http://maven.apache.org/POM/4.0.0${doubleQuote} xmlns:xsi=${doubleQuote}http://www.w3.org/2001/XMLSchema-instance${doubleQuote} xsi:schemaLocation=${doubleQuote}http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd${doubleQuote}>
    <modelVersion>4.0.0</modelVersion>
    <groupId>com.seeyon.magic.external</groupId>
    <artifactId>${businessId}</artifactId>
    <version>0.0.1-SNAPSHOT</version>
    <name>${businessId}</name>
    <parent>
        <groupId>com.seeyon</groupId>
        <artifactId>ctp-platform-root</artifactId>
        <version>7.1-SNAPSHOT</version>
    </parent>
    <dependencies>
        <dependency>
            <groupId>com.seeyon</groupId>
            <artifactId>cap-magicengine</artifactId>
            <version>${cap.version}</version>
        </dependency>
         <dependency>
            <groupId>com.seeyon</groupId>
            <artifactId>cap-api</artifactId>
            <version>${cap.version}</version>
        </dependency>
    </dependencies>
    <build>
        <finalName>${name}</finalName>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-resources-plugin</artifactId>
                <version>2.5</version>
                <configuration>
                    <encoding>UTF-8</encoding>
                </configuration>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-assembly-plugin</artifactId>
                <version>2.2.1</version>
                <executions>
                    <execution>
                        <id>interface-assembly</id>
                        <phase>package</phase>
                        <goals>
                            <goal>single</goal>
                        </goals>
                        <configuration>
                            <finalName>interface</finalName>
                            <appendAssemblyId>false</appendAssemblyId>
                            <descriptors>
                                 <descriptor>./interface-assembly.xml</descriptor>
                            </descriptors>
                        </configuration>
                    </execution>
                    <execution>
                        <id>rootZip-assembly</id>
                        <phase>package</phase>
                         <goals>
                            <goal>single</goal>
                        </goals>
                        <configuration>
                            <finalName>${name}</finalName>
                            <appendAssemblyId>false</appendAssemblyId>
                            <descriptors>
                                 <descriptor>./rootZip-assembly.xml</descriptor>
                            </descriptors>
                        </configuration>
                    </execution>
                </executions>
            </plugin>
     </plugins>
   </build>
</project>
