<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>net.nan21.dnet</groupId>
		<artifactId>nan21.dnet.module.md</artifactId>
		<version>1.0.3</version>
	</parent>
	<artifactId>nan21.dnet.module.md.ui.extjs</artifactId>
	<name>DNet MD - Ui Extjs</name>
	<description>MD module Extjs based user interface components.</description>
	<packaging>jar</packaging>
	
	<!-- ===================== Build ===================== -->
	
	<build>
		<plugins>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-antrun-plugin</artifactId>
				<version>1.7</version>
				<!-- Compress and minify -->				
				<executions>
					<execution>
						<phase>prepare-package</phase>
						<configuration>
							<target>
								<echo>Compress and minimize resources...</echo>
								<property name="compile_classpath" refid="maven.compile.classpath"/>                                                                 
								<property name="yui.path" value="${yui.path}"/>
								<ant antfile="${basedir}/pack.xml">
									<target name="run"/>
								</ant>
							</target>                            
						</configuration>
						<goals>
							<goal>run</goal>
						</goals>
					</execution>
				</executions>
			</plugin>
		</plugins>
	</build>
</project>
