<?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <modelVersion>4.0.0</modelVersion>
  <groupId>com.github.drapostolos</groupId>
  <artifactId>type-parser</artifactId>
  <version>0.7.0</version>
  <name>type-parser</name>
  <description>This is a lightweigth library that does nothing but parse a string to a given type. Supports most of the java classes, such as Integer, File, Enum, Float and also generic types as well, such as List&amp;lt;Integer&amp;gt;, Set&amp;lt;File&amp;gt; etc. Also possible to register your own parsers.</description>
  <url>https://github.com/drapostolos/type-parser.git</url>
  <licenses>
    <license>
      <name>The MIT License (MIT)</name>
      <url>http://opensource.org/licenses/MIT</url>
    </license>
  </licenses>
  <developers>
    <developer>
      <id>drapostolos</id>
      <name>Alexander Poulikakos</name>
      <email>github@labelscans.com</email>
    </developer>
  </developers>
  <scm>
    <connection>scm:git:https://github.com/drapostolos/type-parser.git</connection>
    <developerConnection>scm:git:https://github.com/drapostolos/type-parser.git</developerConnection>
    <url>https://github.com/drapostolos/type-parser.git</url>
  </scm>
  <dependencies>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>4.12</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.assertj</groupId>
      <artifactId>assertj-core</artifactId>
      <version>1.7.1</version>
      <scope>test</scope>
    </dependency>
  </dependencies>
</project>
