<?xml version="1.0" encoding="UTF-8"?>
<project xsi:noNamespaceSchemaLocation="http://maven.apache.org/xsd/maven-project-3.0.0.xsd" 
         xmlns:xsi="http://www.w3c.org/2001/XMLSchema-instance">
  
  <modelVersion>4.0.0</modelVersion>
  <artifactId>simple-jndi</artifactId>
  <name>simple-jndi</name>
  <version>0.11.4.1</version>
  <organization>
    <name>OSJava</name>
  </organization>
  <inceptionYear>2003</inceptionYear>
  <groupId>simple-jndi</groupId>
  <url>http://www.osjava.org/simple-jndi/</url>
  
  <description>
    A simple implementation of JNDI. It is entirely library based, so no server instances are started, and it sits upon Java .properties files or XML files, so it is easy to use and simple to understand. The .properties/.xml files may be either on the file system or in the classpath. 
  </description>

  <scm>
    <developerConnection>scm:svn:https://osjava.googlecode.com/svn/trunk/simple-jndi</developerConnection>
    <connection>scm:svn:http://osjava.googlecode.com/svn/trunk/simple-jndi</connection>
  </scm>
  <issueManagement>
    <url>http://code.google.com/p/osjava/issues/list</url>
  </issueManagement>
  
  <mailingLists>
    <mailingList>
      <name>osjava google group</name>
      <subscribe>http://groups.google.com/group/osjava</subscribe>
      <unsubscribe>http://groups.google.com/group/osjava</unsubscribe>
      <archive>http://groups.google.com/group/osjava</archive>
    </mailingList>
  </mailingLists>

  <developers>

    <developer>
      <name>Henri Yandell</name>
      <id>hen</id>
      <email>bayard@generationjava.com</email>
      <organization>GenerationJava</organization>
      <roles>
        <role>Java Developer</role>
      </roles>
    </developer>

    <developer>
      <name>Robert M. Zigweid</name>
      <id>rzigweid</id>
      <email>rzigweid@osjava.org</email>
      <organization>OSJava</organization>
      <roles>
        <role>Developer</role>
      </roles>
      <timezone>-5</timezone>
    </developer>
  </developers>
  
  <dependencies>
    <!-- used if you turn on dbcp usage -->
    <dependency>
      <artifactId>commons-dbcp</artifactId>
      <groupId>commons-dbcp</groupId>
      <version>1.2.2</version>
      <optional>true</optional>
    </dependency>
    <!-- used if you turn on dbcp usage -->
    <dependency>
      <artifactId>commons-pool</artifactId>
      <groupId>commons-pool</groupId>
      <version>1.3</version>
      <optional>true</optional>
    </dependency>

    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>3.8.1</version>
      <scope>test</scope>
    </dependency>

    <!--
    <dependency>
      <groupId>directory-naming</groupId>
      <artifactId>directory-naming-core</artifactId>
      <version>SNAPSHOT</version>
    </dependency>
    -->
  </dependencies>

  <build>

    <sourceDirectory>src/java</sourceDirectory>
    <testSourceDirectory>src/test</testSourceDirectory>

      <testResources>
        <testResource>
          <directory>${basedir}/src/test/config</directory>
          <targetPath>config</targetPath>
        </testResource>
        <testResource>
          <directory>${basedir}/src/test</directory>
          <includes>
            <include>jndi.properties</include>
          </includes>
        </testResource>
      </testResources>

    <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-surefire-plugin</artifactId>
        <configuration>
          <forkMode>always</forkMode>
        </configuration>
      </plugin>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-compiler-plugin</artifactId>
        <configuration>
          <source>1.5</source>
          <target>1.5</target>
        </configuration>
      </plugin>
    </plugins>

  </build>

    <!-- NOT USED FOR SITE YET; USE MAVEN 1 -->
    <reports>
        <report>maven-jxr-plugin</report>
        <report>maven-javadoc-plugin</report>
        <report>maven-license-plugin</report>
        <report>maven-changes-plugin</report>           
    </reports>


</project>

