Maven Repository - POM file for Development ness-config 2.2.0 2.2.0

Summary

ness-config.

Ness Configuration component..

Declaration

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

<dependency>
   <groupId>com.nesscomputing.components</groupId>
   <artifactId>ness-config</artifactId>
   <version>2.2.0</version>
</dependency>

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

Depends on

The ness-config-2.2.0 has 7 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
Logness-logging 1.1.0
Logging component component.
12
Httphttpcore 4.1.4
HttpComponents Core (blocking I/O)
13
Jettyjetty-server 8.1.3.v20120416
The core jetty server artifact.
9
Jettyjetty-security 8.1.3.v20120416
Jetty security infrastructure
9
Jettyjetty-util 8.1.3.v20120416
Utility classes for Jetty
6




Packages

The following packages are defined in the ness-config-2.2.0.jar

com.nesscomputing.config
com.nesscomputing.config.util

POM File Source

Here is the content of the POM file.

<?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/xsd/maven-4.0.0.xsd">

  <modelVersion>4.0.0</modelVersion>
  <parent>
    <groupId>com.nesscomputing</groupId>
    <artifactId>ness-oss-parent</artifactId>
    <version>10</version>
  </parent>

  <scm>
    <connection>scm:git:git://github.com/NessComputing/components-ness-config.git</connection>
    <developerConnection>scm:git:git@github.com:NessComputing/components-ness-config.git</developerConnection>
    <url>http://github.com/NessComputing/components-ness-config</url>
  </scm>

  <groupId>com.nesscomputing.components</groupId>
  <artifactId>ness-config</artifactId>
  <name>ness-config</name>
  <version>2.2.0</version>
  <packaging>jar</packaging>
  <description>Ness Configuration component.</description>

  <properties>
    <dep.jetty.version>8.1.3.v20120416</dep.jetty.version>
  </properties>

  <dependencies>
    <dependency>
      <groupId>com.nesscomputing.components</groupId>
      <artifactId>ness-logging</artifactId>
      <version>1.1.0</version>
    </dependency>

    <dependency>
      <groupId>com.nesscomputing.components</groupId>
      <artifactId>ness-tinyhttp</artifactId>
      <version>1.1.0</version>
    </dependency>

    <dependency>
      <groupId>org.apache.commons</groupId>
      <artifactId>commons-lang3</artifactId>
    </dependency>

    <dependency>
      <groupId>commons-configuration</groupId>
      <artifactId>commons-configuration</artifactId>
    </dependency>

    <dependency>
      <groupId>com.google.inject</groupId>
      <artifactId>guice</artifactId>
    </dependency>

    <dependency>
      <groupId>com.google.guava</groupId>
      <artifactId>guava</artifactId>
    </dependency>

    <dependency>
      <groupId>org.skife.config</groupId>
      <artifactId>config-magic</artifactId>
    </dependency>
    
    <dependency>
      <groupId>com.google.code.findbugs</groupId>
      <artifactId>jsr305</artifactId>
    </dependency>

    <dependency>
      <groupId>javax.servlet</groupId>
      <artifactId>javax.servlet-api</artifactId>
      <scope>provided</scope>
    </dependency>

    <dependency>
      <groupId>commons-io</groupId>
      <artifactId>commons-io</artifactId>
    </dependency>

    <dependency>
      <groupId>org.apache.httpcomponents</groupId>
      <artifactId>httpcore</artifactId>
      <version>4.1.4</version>
    </dependency>

    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit-dep</artifactId>
      <scope>test</scope>
    </dependency>

    <dependency>
      <groupId>org.hamcrest</groupId>
      <artifactId>hamcrest-core</artifactId>
      <scope>test</scope>
    </dependency>

    <dependency>
      <groupId>org.easymock</groupId>
      <artifactId>easymock</artifactId>
      <scope>test</scope>
    </dependency>

    <dependency>
      <groupId>org.eclipse.jetty</groupId>
      <artifactId>jetty-server</artifactId>
      <version>${dep.jetty.version}</version>
      <scope>test</scope>
      <exclusions>
        <exclusion>
          <groupId>org.eclipse.jetty.orbit</groupId>
          <artifactId>javax.servlet</artifactId>
        </exclusion>
      </exclusions>
    </dependency>

    <dependency>
      <groupId>org.eclipse.jetty</groupId>
      <artifactId>jetty-http</artifactId>
      <version>${dep.jetty.version}</version>
      <scope>test</scope>
    </dependency>

    <dependency>
      <groupId>org.eclipse.jetty</groupId>
      <artifactId>jetty-security</artifactId>
      <version>${dep.jetty.version}</version>
      <scope>test</scope>
    </dependency>

    <dependency>
      <groupId>org.eclipse.jetty</groupId>
      <artifactId>jetty-util</artifactId>
      <version>${dep.jetty.version}</version>
      <scope>test</scope>
    </dependency>
  </dependencies>
</project>