<?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/maven-v4_0_0.xsd">
  <parent>
    <artifactId>oss-parent</artifactId>
    <groupId>org.sonatype.oss</groupId>
    <version>7</version>
    <relativePath>../pom.xml/pom.xml</relativePath>
  </parent>
  <modelVersion>4.0.0</modelVersion>
  <groupId>net.sf.mongojdbcdriver</groupId>
  <artifactId>mongojdbcdriver</artifactId>
  <name>mongojdbcdriver</name>
  <version>0.0.2</version>
  <description>JDBC driver for MongoDB</description>
  <url>http://http://sourceforge.net/projects/mongojdbcdriver</url>
  <issueManagement>
    <system>SourceForge Tracker</system>
    <url>https://sourceforge.net/p/mongojdbcdriver/tickets</url>
  </issueManagement>
  <ciManagement>
    <system>Hudson</system>
    <url>https://www.squirrel-sql.org/hudson/job/mongodb-jdbc-driver</url>
  </ciManagement>
  <inceptionYear>2012</inceptionYear>
  <developers>
    <developer>
      <name>Rob Manning</name>
      <roles>
        <role>Administrator</role>
        <role>Developer</role>
        <role>Release Manager</role>
      </roles>
    </developer>
  </developers>
  <licenses>
    <license>
      <name>GNU Lesser General Public License</name>
      <url>http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt</url>
      <distribution>repo</distribution>
    </license>
  </licenses>
  <scm>
    <connection>scm:svn:https://svn.code.sf.net/p/mongojdbcdriver/code/tags/mongojdbcdriver-0.0.2</connection>
    <developerConnection>scm:svn:https://svn.code.sf.net/p/mongojdbcdriver/code/tags/mongojdbcdriver-0.0.2</developerConnection>
    <url>https://sourceforge.net/p/mongojdbcdriver/code/11/tree/tags/mongojdbcdriver-0.0.2</url>
  </scm>
  <build>
    <plugins>
      <plugin>
        <artifactId>maven-compiler-plugin</artifactId>
        <version>2.5.1</version>
        <configuration>
          <source>1.6</source>
          <target>1.6</target>
        </configuration>
      </plugin>
      <plugin>
        <artifactId>maven-surefire-plugin</artifactId>
        <version>2.13</version>
        <configuration>
          <redirectTestOutputToFile>true</redirectTestOutputToFile>
        </configuration>
      </plugin>
      <plugin>
        <artifactId>maven-shade-plugin</artifactId>
        <version>2.0</version>
        <executions>
          <execution>
            <phase>package</phase>
            <goals>
              <goal>shade</goal>
            </goals>
            <configuration>
              <relocations>
                <relocation>
                  <pattern>org.apache.commons</pattern>
                  <shadedPattern>shaded.org.apache.commons</shadedPattern>
                </relocation>
                <relocation>
                  <pattern>com.mongodb</pattern>
                  <shadedPattern>shaded.com.mongodb</shadedPattern>
                </relocation>
                <relocation>
                  <pattern>org.bson</pattern>
                  <shadedPattern>shaded.org.bson</shadedPattern>
                </relocation>
                <relocation>
                  <pattern>com.google</pattern>
                  <shadedPattern>shaded.com.google</shadedPattern>
                </relocation>
              </relocations>
            </configuration>
          </execution>
        </executions>
      </plugin>
    </plugins>
  </build>
  <dependencies>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>4.8.2</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.mockito</groupId>
      <artifactId>mockito-all</artifactId>
      <version>1.9.5</version>
      <scope>test</scope>
    </dependency>
  </dependencies>
  <properties>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  </properties>
</project>

