<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>3.9.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>17</source>  
          <target>17</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>jakarta.servlet</groupId>
      <artifactId>jakarta.servlet-api</artifactId>
      <version>5.0.0</version>
      <scope>provided</scope>
    </dependency>
  </dependencies>
</project>
