Plexus :: Default Container.
The Plexus IoC container API and its default implementation..
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.5</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.
The following table lists the most popular artifacts which are depending on plexus-container-default-1.5.5. Their categories and depend by count are also listed.
Category | Artifact | Depended By Count |
---|---|---|
Network | pax-url-aether 1.6.0 OPS4J Pax Url - aether: protocol handler. Detailed information to be found at http://wiki.ops4j.org/confluence/x/CoA6. | 13 |
Build | maven-common-artifact-filters 1.4 A collection of ready-made filters to control inclusion/exclusion of artifacts during dependency resolution. | 9 |
Http | wagon-ahc 1.2.1 A wagon provider for HTTP transfers based on the async-http-client. | 78 |
Network | pax-url-aether 1.5.0 OPS4J Pax Url - aether: protocol handler. Detailed information to be found at http://wiki.ops4j.org/confluence/x/CoA6. | 25 |
Network | pax-url-aether 1.4.0 OPS4J Pax Url - aether: protocol handler. Detailed information to be found at http://wiki.ops4j.org/confluence/x/CoA6. | 34 |
The following plugins are used in the plexus-container-default-1.5.5.jar
The following packages are defined in the plexus-container-default-1.5.5.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
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.5</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>