Maven Repository - POM file for Data Structure commons-discovery 0.2 0.2

Summary

Discovery.

Commons Discovery.

Declaration

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

<dependency>
   <groupId>commons-discovery</groupId>
   <artifactId>commons-discovery</artifactId>
   <version>0.2</version>
</dependency>

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

Depends on

The commons-discovery-0.2 has 2 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
Logcommons-logging 1.0.3
Commons Logging
69
JUnitjunit 3.7
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.
21




Depended by

The following table lists the most popular artifacts which are depending on commons-discovery-0.2. Their categories and depend by count are also listed.

CategoryArtifactDepended By Count
Developmentmule-core 2.0.0
Mule server and core classes
25
Developmentmule-core 2.0.0-RC3
Mule server and core classes
25
Developmentmule-core 2.0.1
Mule server and core classes
27
Developmentmule-core 2.0.2
Mule server and core classes
27
Developmentmule-core 2.0.0-RC1
Mule server and core classes
17
Developmentmule-core 2.0.0-M2
Mule server and core classes
21
Developmentmule-core 1.4.0
Mule server and core classes
6
Securitywss4j 1.5.12
Apache WSS4J is an implementation of the Web Services Security (WS-Security) being developed at OASIS Web Services Security TC. WSS4J is a primarily a Java library that can be used to sign and verify SOAP Messages with WS-Security information. WSS4J will use Apache A...
16
Securitywss4j 1.5.8
Apache WSS4J is an implementation of the Web Services Security (WS-Security) being developed at OASIS Web Services Security TC. WSS4J is a primarily a Java library that can be used to sign and verify SOAP Messages with WS-Security information. WSS4J will use Apache A...
6
Networkaxis 1.4
An implementation of the SOAP ("Simple Object Access Protocol") submission to W3C.
18
Developmentmule-core 2.0.0-RC2
Mule server and core classes
22
Data Structurecommons-math 1.1
The Math project is a library of lightweight, self-contained mathematics and statistics components addressing the most common practical problems not immediately available in the Java programming language or commons-lang.
143
Developmentmule-core 1.4.4
Mule server and core classes
21
Developmentmule-core 1.4.3
Mule server and core classes
7




Plugin

The following plugins are used in the commons-discovery-0.2.jar

  1. maven-surefire-plugin

Packages

The following packages are defined in the commons-discovery-0.2.jar

org.apache.commons.discovery
org.apache.commons.discovery.ant
org.apache.commons.discovery.jdk
org.apache.commons.discovery.log
org.apache.commons.discovery.resource
org.apache.commons.discovery.resource.classes
org.apache.commons.discovery.resource.names
org.apache.commons.discovery.tools




POM File Source

Here is the content of the POM file.

<project>
  <modelVersion>4.0.0</modelVersion>
  <groupId>commons-discovery</groupId>
  <artifactId>commons-discovery</artifactId>
  <name>Discovery</name>
  <version>0.2</version>
  <description>Commons Discovery</description>
  <inceptionYear>2002</inceptionYear>
  
  <build>
    <testResources>
      <testResource>
        <directory>${basedir}/src</directory>
        <includes>
          <include>**/testResource</include>
        </includes>
      </testResource>
      <testResource>
        <directory>${basedir}/src/test</directory>
        <includes>
          <include>**/*.properties</include>
          <include>META-INF/**</include>
        </includes>
      </testResource>
    </testResources>
    <plugins>
      <plugin>
        <artifactId>maven-surefire-plugin</artifactId>
        <configuration>
          <includes>
            <include>**/TestAll.java</include>
          </includes>
        </configuration>
      </plugin>
    </plugins>
  </build>
  <dependencies>
    <dependency>
      <groupId>commons-logging</groupId>
      <artifactId>commons-logging</artifactId>
      <version>1.0.3</version>
    </dependency>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>3.7</version>
      <scope>test</scope>
    </dependency>
  </dependencies>
</project>