<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>com.mfizz</groupId>
    <artifactId>mfz-ruby-marshal</artifactId>
    <packaging>jar</packaging>
    <version>1.0.2</version>
    <name>mfz-ruby-marshal</name>
    <description>Java library for reading and writing to/from serialized Ruby objects that use Marshal.dump and Marshal.load</description>
    <url>http://code.google.com/p/mfz-ruby-marshal/</url>
  
    <parent>
        <groupId>com.mfizz</groupId>
        <artifactId>mfz-maven-parent</artifactId>
        <version>1.7</version>
    </parent>
  
    <scm>
      <url>http://code.google.com/p/mfz-ruby-marshal/source/browse/</url>
      <connection>scm:git:https://code.google.com/p/mfz-ruby-marshal/</connection>
      <tag>version-1.0.2</tag>
  </scm>
  
    <developers>
        <developer>
            <email>oss@mfizz.com</email>
        </developer>
    </developers>

    <dependencies>
        <dependency>
            <groupId>org.slf4j</groupId>
            <artifactId>slf4j-api</artifactId>
            <version>1.6.6</version>
        </dependency>
        <dependency>
            <groupId>ch.qos.logback</groupId>
            <artifactId>logback-classic</artifactId>
            <version>1.0.7</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>${junit.version}</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>commons-codec</groupId>
            <artifactId>commons-codec</artifactId>
            <version>1.6</version>
            <scope>test</scope>
        </dependency>
    </dependencies>

    <properties>
        <main.java.package>com.mfizz.ruby.marshal</main.java.package>
        <junit.version>4.10</junit.version>
        <powermock.version>1.4.12</powermock.version>
        <license.skip>false</license.skip>
    </properties>

</project>
