<?xml version="1.0" encoding="UTF-8"?>
<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>
  <artifactId>babel-xls-converter</artifactId>
  <name>SIMILE XLS Converter</name>
  <description>XLS Converter is part of the Babel project. It reads and writes data in Excel format.</description> 

  <parent>
      <groupId>edu.mit.simile</groupId>
      <artifactId>babel-converters</artifactId>
      <version>1.0</version>
  </parent>

  <dependencies>
  	<dependency>
		<groupId>edu.mit.simile</groupId>
		<artifactId>babel-interfaces</artifactId>
		<version>1.0</version>
	</dependency>
  	<dependency>
		<groupId>edu.mit.simile</groupId>
		<artifactId>babel-exhibit-converter</artifactId>
		<version>1.0</version>
	</dependency>
	<dependency>
		<groupId>poi</groupId>
		<artifactId>poi</artifactId>
		<version>2.5.1-final-20040804</version>
	</dependency>
  </dependencies>
</project>
