Maven Repository - POM file for XML simple-jndi 0.11.4 0.11.4

Summary

simple-jndi.

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..

Declaration

Here is the list of declaration for simple-jndi. If you use Maven you can use the following code to add the dependency for this POM file.

<dependency>
   <groupId>simple-jndi</groupId>
   <artifactId>simple-jndi</artifactId>
   <version>0.11.4</version>
</dependency>

If you think this Maven repository POM file listing for simple-jndi is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.





Depends on

The simple-jndi-0.11.4 has 3 dependencies.The most popular ones are listed in the following table along with their categories and number of artifacts depending on them.

CategoryArtifactDepended By Count
Databasecommons-dbcp 1.2.2
Commons Database Connection Pooling
148
Data Structurecommons-pool 1.3
Commons Object Pooling Library
73
JUnitjunit 3.8.1
JUnit is a regression testing framework written by Erich Gamma and Kent Beck. It is used by the developer who implements unit tests in Java.
1966

Depended by

The following table lists the most popular artifacts which are depending on simple-jndi-0.11.4. Their categories and depend by count are also listed.

CategoryArtifactDepended By Count
JDBCopenjpa-persistence-jdbc 2.2.1
OpenJPA Persistence JDBC
12
JDBCopenjpa-persistence-jdbc 2.2.0
OpenJPA Persistence JDBC
10

Plugin

The following plugins are used in the simple-jndi-0.11.4.jar

  1. maven-compiler-plugin
  2. maven-surefire-plugin




Packages

The following packages are defined in the simple-jndi-0.11.4.jar

org.osjava.sj
org.osjava.sj.jndi
org.osjava.sj.loader
org.osjava.sj.loader.convert
org.osjava.sj.loader.util
org.osjava.sj.memory
org.osjava.sj.naming

POM File Source

Here is the content of the POM file.

<?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</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>

  
  
  <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>