 <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>org.sonatype.oss</groupId>
    <artifactId>oss-parent</artifactId>
    <version>7</version>
  </parent>


  <groupId>au.com.refactor.texttable</groupId>
  <artifactId>texttable</artifactId>
  <packaging>jar</packaging>
  <name>TextTable</name>
  <version>0.1.0</version>
  <description>Simple library for representing tabular data in text files</description>
  <url>https://bitbucket.org/refactor/texttable</url>
 	
	<licenses>
        <license>
            <name>GNU Lesser General Public License</name>
            <url>http://www.gnu.org/licenses/lgpl-3.0-standalone.html</url>
            <distribution>repo</distribution>
            <comments>GNU Lesser General Public License</comments>
        </license>
    </licenses>

  <scm>
    <connection>scm:hg:http://bitbucket.org/refactor/texttable</connection>
    <developerConnection>scm:hg:https://bitbucket.org/refactor/texttable</developerConnection>
    <url>https://bitbucket.org/refactor/texttable</url>
  </scm>
  <developers>
      <developer>
          <id>rnielsen</id>
          <name>Rob Nielsen</name>
          <email>rob@refactor.com.au</email>
          <url>http://refactor.com.au</url>
      </developer>
  </developers>

     <dependencies>
         <dependency>
             <groupId>commons-io</groupId>
             <artifactId>commons-io</artifactId>
             <version>2.4</version>
         </dependency>
         <dependency>
             <groupId>junit</groupId>
             <artifactId>junit</artifactId>
             <version>4.7</version>
             <scope>test</scope>
         </dependency>
     </dependencies>


 </project>