Maven Repository - POM file for Inversion of Control plexus-container-default 1.5.4 1.5.4

Summary

Plexus :: Default Container.

The Plexus IoC container API and its default implementation..

Declaration

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

<dependency>
   <groupId>org.codehaus.plexus</groupId>
   <artifactId>plexus-container-default</artifactId>
   <version>1.5.4</version>
</dependency>

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

Depended by

The following table lists the most popular artifacts which are depending on plexus-container-default-1.5.4. Their categories and depend by count are also listed.

CategoryArtifactDepended By Count
Networkpax-url-aether 1.4.0.RC1
OPS4J Pax Url - aether: protocol handler. Detailed information to be found at http://wiki.ops4j.org/confluence/x/CoA6.
5
Networkpax-url-aether 1.3.5
OPS4J Pax Url - aether: protocol handler. Detailed information to be found at http://wiki.ops4j.org/confluence/x/CoA6.
7




Plugin

The following plugins are used in the plexus-container-default-1.5.4.jar

  1. maven-surefire-plugin
  2. modello-maven-plugin

Packages

The following packages are defined in the plexus-container-default-1.5.4.jar

org.codehaus.plexus
org.codehaus.plexus.component
org.codehaus.plexus.component.builder
org.codehaus.plexus.component.collections
org.codehaus.plexus.component.composition
org.codehaus.plexus.component.configurator
org.codehaus.plexus.component.configurator.converters
org.codehaus.plexus.component.configurator.converters.basic
org.codehaus.plexus.component.configurator.converters.composite
org.codehaus.plexus.component.configurator.converters.lookup
org.codehaus.plexus.component.configurator.converters.special
org.codehaus.plexus.component.configurator.expression
org.codehaus.plexus.component.discovery
org.codehaus.plexus.component.factory
org.codehaus.plexus.component.factory.java
org.codehaus.plexus.component.manager
org.codehaus.plexus.component.repository
org.codehaus.plexus.component.repository.exception
org.codehaus.plexus.component.repository.io
org.codehaus.plexus.configuration
org.codehaus.plexus.configuration.io
org.codehaus.plexus.configuration.source
org.codehaus.plexus.configuration.xml
org.codehaus.plexus.container.initialization
org.codehaus.plexus.context
org.codehaus.plexus.lifecycle
org.codehaus.plexus.lifecycle.phase
org.codehaus.plexus.logging
org.codehaus.plexus.logging.console
org.codehaus.plexus.personality.plexus.lifecycle.phase




POM File Source

Here is the content of the POM file.

<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>org.codehaus.plexus</groupId>
    <artifactId>plexus-containers</artifactId>
    <version>1.5.4</version>
  </parent>

  <artifactId>plexus-container-default</artifactId>

  <name>Plexus :: Default Container</name>
  <description>
    The Plexus IoC container API and its default implementation.
  </description>

  <dependencies>
    <dependency>
      <groupId>org.codehaus.plexus</groupId>
      <artifactId>plexus-utils</artifactId>
    </dependency>
    <dependency>
      <groupId>org.codehaus.plexus</groupId>
      <artifactId>plexus-classworlds</artifactId>
    </dependency>
    <dependency>
      <groupId>org.apache.xbean</groupId>
      <artifactId>xbean-reflect</artifactId>
    </dependency>
    <dependency>
      <groupId>com.google.collections</groupId>
      <artifactId>google-collections</artifactId>
    </dependency>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
    </dependency>
  </dependencies>

  <build>
    <plugins>
      <plugin>
        <artifactId>maven-surefire-plugin</artifactId>
        <configuration>
          <forkMode>once</forkMode>
          <excludes>
            <exclude>**/Test*.java</exclude>
            <exclude>**/Abstract*.java</exclude>
          </excludes>
        </configuration>
      </plugin>
      <plugin>
        <groupId>org.codehaus.modello</groupId>
        <artifactId>modello-maven-plugin</artifactId>
        <version>1.1</version>
        <configuration>
          <models>
            <model>src/main/mdo/components.mdo</model>
            <model>src/main/mdo/plexus.mdo</model>
          </models>
          <version>1.3.0</version>
        </configuration>
        <executions>
          <execution>
            <id>xsd-site</id>
            <phase>pre-site</phase>
            <goals>
              <goal>xsd</goal>
            </goals>
            <configuration>
              <outputDirectory>${basedir}/target/generated-site/resources/xsd</outputDirectory>
            </configuration>
          </execution>
          <execution>
            <id>descriptor-site</id>
            <phase>pre-site</phase>
            <goals>
              <goal>xdoc</goal>
            </goals>
            <configuration>
              <firstVersion>1.0.0</firstVersion>
            </configuration>
          </execution>
        </executions>
      </plugin>
    </plugins>
  </build>
</project>