<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.sf.xmlform</groupId>
    <artifactId>xmlform-parent</artifactId>
    <version>1.1.0</version>
  </parent>
  <artifactId>xmlform-web</artifactId>
  <packaging>jar</packaging>
  <name>Java XML form Web Library</name>
  
  <build>  
    <plugins>  
      <plugin>  
        <groupId>org.apache.maven.plugins</groupId>  
        <artifactId>maven-compiler-plugin</artifactId>  
        <configuration>
          <source>1.5</source>  
          <target>1.5</target>  
          <encoding>UTF-8</encoding>
        </configuration> 
      </plugin> 
      <!--
      <plugin>
		<groupId>net.sf.alchim</groupId>
		<artifactId>yuicompressor-maven-plugin</artifactId>
		<executions>
			<execution>
				<goals>
					<goal>compress</goal>
				</goals>
			</execution>
		</executions>
		<configuration>
			<nosuffix>true</nosuffix>
			<jswarn>true</jswarn>
			<preserveAllSemiColons>true</preserveAllSemiColons>
		</configuration>     
	</plugin>
	
	<plugin>
		<groupId>com.yahoo.platform.yui</groupId>
		<artifactId>yuicompressor</artifactId>
		<version>2.4.8</version>
		<executions>
			<execution>
				<goals>
					<goal>compress</goal>
				</goals>
			</execution>
		</executions>
		<configuration>
			<nosuffix>true</nosuffix>
			<jswarn>true</jswarn>
			<preserveAllSemiColons>true</preserveAllSemiColons>
		</configuration>     
	</plugin>-->
	<plugin>
		<groupId>net.alchim31.maven</groupId>
		<artifactId>yuicompressor-maven-plugin</artifactId>
		<version>1.5.1</version>
		<executions>
			<execution>
				<goals>
					<goal>compress</goal>
				</goals>
			</execution>
		</executions>
		<configuration>
			<nosuffix>true</nosuffix>
			<jswarn>true</jswarn>
			<force>true</force>
			<preserveAllSemiColons>true</preserveAllSemiColons>
		</configuration>     
	</plugin>
    </plugins>  
  </build> 
  <dependencies>
    <dependency>
      <groupId>net.sf.xmlform</groupId>
      <artifactId>xmlform-port</artifactId>
      <version>${project.version}</version>
    </dependency>
    <dependency>
      <groupId>javax.servlet</groupId>
      <artifactId>javax.servlet-api</artifactId>
      <version>3.0.1</version>
      <scope>provided</scope>
    </dependency>
    <dependency>
      <groupId>log4j</groupId>
      <artifactId>log4j</artifactId>
      <version>1.2.12</version>
    </dependency>
    <dependency>
      <groupId>commons-io</groupId>
      <artifactId>commons-io</artifactId>
      <version>1.4</version>
    </dependency>
  </dependencies>
</project>
