Maven Repository - POM file for Inversion of Control ness-lifecycle 1.0.1 1.0.1

Summary

ness-lifecycle.

Guice based lifecycle..

Declaration

Here is the list of declaration for ness-lifecycle. 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-lifecycle</artifactId>
   <version>1.0.1</version>
</dependency>

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

Depends on

The ness-lifecycle-1.0.1 has 10 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.0.2
Logging component component.
10
Developmentguava 11.0.1
Guava is a suite of core and expanded libraries that include utility classes, google's collections, io classes, and much much more. This project is a complete packaging of all the Guava libraries into a single jar. Individual portions of Guava can be used by downloading the ap...
200
Data Structurecommons-lang3 3.1
Commons Lang, a package of Java utility classes for the classes that are in java.lang's hierarchy, or are considered to be so standard as to justify existence in java.lang.
287
Testing Coding Stylejsr305 2.0.0
JSR305 Annotations for Findbugs
79
JUnitjunit-dep 4.10
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.
177
Testing Mockeasymock 3.1
EasyMock provides an easy way to create Mock Objects for interfaces and classes generating them on the fly
230
Testinghamcrest-library 1.2
Hamcrest library of matcher implementations.
42
Testinghamcrest-core 1.2
This is the core API of hamcrest matcher framework to be used by third-party framework providers. This includes the a foundation set of matcher implementations for common operations.
39




Packages

The following packages are defined in the ness-lifecycle-1.0.1.jar

com.nesscomputing.lifecycle
com.nesscomputing.lifecycle.guice

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>3</version>
  </parent>

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

  <groupId>com.nesscomputing.components</groupId>
  <artifactId>ness-lifecycle</artifactId>
  <name>ness-lifecycle</name>
  <version>1.0.1</version>
  <packaging>jar</packaging>
  <description>Guice based lifecycle.</description>

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

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

    <!-- Java APIs -->
    <dependency>
      <groupId>javax.servlet</groupId>
      <artifactId>servlet-api</artifactId>
      <version>2.5</version>
      <scope>provided</scope>
    </dependency>

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

    <dependency>
      <groupId>com.google.code.findbugs</groupId>
      <artifactId>jsr305</artifactId>
      <version>2.0.0</version>
    </dependency>

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

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

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

    <dependency>
      <groupId>org.hamcrest</groupId>
      <artifactId>hamcrest-library</artifactId>
      <version>1.2</version>
      <scope>test</scope>
    </dependency>

    <dependency>
      <groupId>org.hamcrest</groupId>
      <artifactId>hamcrest-core</artifactId>
      <version>1.2</version>
      <scope>test</scope>
    </dependency>
  </dependencies>
</project>