<?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/xsd/maven-4.0.0.xsd'>
  <modelVersion>4.0.0</modelVersion>
  <groupId>org.grails.plugins</groupId>
  <artifactId>excel-import</artifactId>
  <packaging>zip</packaging>
  <version>1.0.1</version>
  <name>Excel, Excel 2007 &amp; CSV Importer Using Apache POI</name>
  <description>\
	Excel-Import plugin uses Apache POI [http://poi.apache.org/] library (v 3.6) to parse Excel files.  
      	It's useful for either bootstrapping data, or when you want to allow your users to enter some data using Excel spreadsheets. 
</description>
  <url>http://grails.org/plugin/excel-import</url>
  <licenses>
    <license>
      <name>Apache License 2.0</name>
      <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
    </license>
  </licenses>
  <organization>
    <name>EnergyScoreCards.com</name>
    <url>http://www.energyscorecards.com/</url>
  </organization>
  <developers>
    <developer>
      <name>Jean Barmash, Oleksiy Symonenko</name>
      <email>Jean.Barmash@gmail.com</email>
    </developer>
    <developer>
      <name>Oleksiy Symonenko</name>
    </developer>
  </developers>
  <issueManagement>
    <system>JIRA</system>
    <url>http://jira.grails.org/browse/GPXLIMPORT</url>
  </issueManagement>
  <scm>
    <url>https://github.com/jbarmash/grails-excel-import</url>
  </scm>
  <dependencies>
    <dependency>
      <groupId>org.apache.poi</groupId>
      <artifactId>poi-ooxml</artifactId>
      <version>3.8</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>joda-time</groupId>
      <artifactId>joda-time</artifactId>
      <version>2.3</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>org.apache.poi</groupId>
      <artifactId>poi</artifactId>
      <version>3.8</version>
      <scope>compile</scope>
    </dependency>
  </dependencies>
</project>