<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>

  <parent>
    <groupId>org.sonatype.oss</groupId>
    <artifactId>oss-parent</artifactId>
    <version>7</version>
  </parent>

  <groupId>com.googlecode.ssd-utils</groupId>
  <artifactId>bean-converter</artifactId>
  <version>0.0.2</version>
  <packaging>pom</packaging>
  <name>Bean Converter</name>
  <description>BeanConverter is an efficient Java Bean to Java Bean mapper that recursively copies data from one object to another. BeanConverter rely on byte cote generation to avoid reflection at runtime.</description>
  <url>http://ssd-utils.googlecode.com</url>
  <inceptionYear>2011</inceptionYear>
  <developers>
    <developer>
      <id>ssd</id>
      <name>Sylvain Sicard</name>
      <email>sylvain.sicard@gmail.com</email>
    </developer>
  </developers>
  <licenses>
    <license>
      <name>GNU Lesser General Public License</name>
      <url>http://www.gnu.org/licenses/lgpl.html</url>
      <distribution>repo</distribution>
    </license>
  </licenses>
  <scm>
    <connection>scm:svn:http://ssd-utils.googlecode.com/svn/tags/bean-converter-0.0.2</connection>
    <developerConnection>scm:svn:https://ssd-utils.googlecode.com/svn/tags/bean-converter-0.0.2</developerConnection>
    <url>http://code.google.com/p/ssd-utils/source/browse/tags/bean-converter-0.0.2</url>
  </scm>
  <modules>
    <module>bean-converter-core</module>
    <module>bean-converter-example</module>
    <module>bean-converter-springfactory</module>
    <module>bean-converter-asmifier</module>
  </modules>
  <build>
    <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-compiler-plugin</artifactId>
        <configuration>
          <source>1.5</source>
          <target>1.5</target>
        </configuration>
      </plugin>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-release-plugin</artifactId>
        <configuration>
          <autoVersionSubmodules>true</autoVersionSubmodules>
          <preparationGoals>clean install</preparationGoals>
        </configuration>
      </plugin>
    </plugins>
  </build>
  <dependencyManagement>
    <dependencies>
      <dependency>
        <groupId>junit</groupId>
        <artifactId>junit</artifactId>
        <version>4.8.1</version>
        <type>jar</type>
      </dependency>
      <dependency>
        <groupId>asm</groupId>
        <artifactId>asm-all</artifactId>
        <version>3.2</version>
        <type>jar</type>
      </dependency>
    </dependencies>
  </dependencyManagement>
</project>