<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>
  <groupId>net.sourceforge.jexcelapi</groupId>
  <artifactId>jxl</artifactId>
  <packaging>jar</packaging>
  <version>2.6.10</version>
  <name>jxl</name>
  <url>http://www.jexcelapi.org</url>
  <description>JExcelApi is a java library which provides the ability to read, write, and modify Microsoft Excel spreadsheets.</description>
  <licenses>
    <license>
      <name>GNU Lesser General Public License</name>
      <url>http://www.opensource.org/licenses/lgpl-license.php</url>
      <distribution>repo</distribution>
    </license>
  </licenses>
  
  <build>
    <plugins>
      <plugin>
        <groupId>net.sourceforge.maven-jlex</groupId>
	<artifactId>maven-jlex-plugin</artifactId>
	<version>1.0</version>
        <configuration>
        	<files>
        		<filePair>
        			<inputFile>xlformula.lex</inputFile>
	        		<outputFile>${project.build.sourceDirectory}/jxl/biff/formula/Yylex.java</outputFile>
        		</filePair>
        	</files>
        </configuration>
        <executions>
          <execution>
            <phase>generate-sources</phase>
            <goals>
              <goal>generate</goal>
            </goals>
          </execution>
        </executions>
      </plugin>
    </plugins>
  </build>

  <dependencies>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>3.8.1</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>log4j</groupId>
      <artifactId>log4j</artifactId>
      <version>1.2.14</version>
    </dependency>
  </dependencies>
</project>
