Maven Repository - POM file for Network rmi-naming 2.1.4 2.1.4

Summary

Geronimo Framework, Configs :: RMI Naming.

Fundamental geronimo services including the plugin installer..

Declaration

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

<dependency>
   <groupId>org.apache.geronimo.framework</groupId>
   <artifactId>rmi-naming</artifactId>
   <version>2.1.4</version>
</dependency>

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

License

Apache License.

Depends on

The rmi-naming-2.1.4 has 8 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
JEE Containerjee-specs 2.1.4
The JavaEE spec jars in a single classloader.
9
JEE Containergeronimo-management 2.1.4
Contains interfaces that define the management API for Geronimo.
13




Depended by

The following table lists the most popular artifacts which are depending on rmi-naming-2.1.4. Their categories and depend by count are also listed.

CategoryArtifactDepended By Count
Securityj2ee-security 2.1.4
Basic Geronimo server security infrastructure
6
JEE Containerj2ee-server 2.1.4
Basic geronimo JavaEE support components including the transaction manager and connector framework.
10
JEE Containerplugin 2.1.4
Plugin management services including the installer.
7

Plugin

The following plugins are used in the rmi-naming-2.1.4.jar

  1. car-maven-plugin

POM File Source

Here is the content of the POM file.

<?xml version="1.0" encoding="ISO-8859-1"?>
<!--
    Licensed to the Apache Software Foundation (ASF) under one or more
    contributor license agreements.  See the NOTICE file distributed with
    this work for additional information regarding copyright ownership.
    The ASF licenses this file to You under the Apache License, Version 2.0
    (the "License"); you may not use this file except in compliance with
    the License.  You may obtain a copy of the License at

       http://www.apache.org/licenses/LICENSE-2.0

    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
-->

<!-- $Rev: 758386 $ $Date: 2009-03-25 14:20:55 -0400 (Wed, 25 Mar 2009) $ -->

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

    <modelVersion>4.0.0</modelVersion>

    <parent>
        <groupId>org.apache.geronimo.framework</groupId>
        <artifactId>configs</artifactId>
        <version>2.1.4</version>
    </parent>

    <artifactId>rmi-naming</artifactId>
    <name>Geronimo Framework, Configs :: RMI Naming</name>
    <packaging>car</packaging>

    <description>Fundamental geronimo services including the plugin installer.</description>

    <dependencies>
        <dependency>
            <groupId>org.apache.geronimo.framework</groupId>
            <artifactId>geronimo-gbean-deployer-bootstrap</artifactId>
            <version>${version}</version>
            <type>car</type>
            <scope>provided</scope>
        </dependency>
        
        <dependency>
            <groupId>org.apache.geronimo.framework</groupId>
            <artifactId>j2ee-system</artifactId>
            <version>${version}</version>
            <type>car</type>
        </dependency>

        <dependency>
            <groupId>org.apache.geronimo.framework</groupId>
            <artifactId>jee-specs</artifactId>
            <version>${version}</version>
            <type>car</type>
        </dependency>

        <!-- thread pool has management interface -->
        <dependency>
            <groupId>org.apache.geronimo.framework</groupId>
            <artifactId>geronimo-management</artifactId>
            <version>${version}</version>
        </dependency>

        <dependency>
            <groupId>org.apache.geronimo.framework</groupId>
            <artifactId>geronimo-core</artifactId>
            <version>${version}</version>
        </dependency>

        <dependency>
            <groupId>org.apache.geronimo.framework</groupId>
            <artifactId>geronimo-interceptor</artifactId>
            <version>${version}</version>
        </dependency>

        <dependency>
            <groupId>org.apache.geronimo.framework</groupId>
            <artifactId>geronimo-naming</artifactId>
            <version>${version}</version>
        </dependency>

        <dependency>
            <groupId>org.apache.geronimo.framework</groupId>
            <artifactId>geronimo-crypto</artifactId>
            <version>${version}</version>
        </dependency>

        <dependency>
            <groupId>org.apache.xbean</groupId>
            <artifactId>xbean-naming</artifactId>
        </dependency>
    </dependencies>

    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.geronimo.buildsupport</groupId>
                <artifactId>car-maven-plugin</artifactId>
                <configuration>
                    <deploymentConfigs>
                        <deploymentConfig>${gbeanDeployerBootstrap}</deploymentConfig>
                    </deploymentConfigs>
                    <deployerName>org.apache.geronimo.framework/geronimo-gbean-deployer-bootstrap/${geronimoVersion}/car?j2eeType=Deployer,name=Deployer</deployerName>
                    <category>Geronimo Core</category>
                    <useMavenDependencies>
                        <value>true</value>
                        <includeVersion>true</includeVersion>
                    </useMavenDependencies>
                    <instance>
                        <plugin-artifact>
                            <config-xml-content>
                                <gbean name="RMIRegistry">
                                    <attribute name="port">${NamingPort + PortOffset}</attribute>
                                    <attribute name="host">${ServerHostname}</attribute>
                                </gbean>
                                <gbean name="NamingProperties">
                                    <!-- Check whether this really works if host name is 0.0.0.0 -->
                                    <attribute name="namingProviderUrl">rmi://${ServerHostname}:${NamingPort + PortOffset}</attribute>
                                </gbean>
                                <gbean name="DefaultThreadPool">
                                    <attribute name="keepAliveTime">30000</attribute>
                                    <attribute name="minPoolSize">${MinThreadPoolSize}</attribute>
                                    <attribute name="maxPoolSize">${MaxThreadPoolSize}</attribute>
                                </gbean>
                            </config-xml-content>
                            <config-substitution key="ServerHostname">localhost</config-substitution>
                            <config-substitution key="PortOffset">0</config-substitution>
                            <config-substitution key="NamingPort">1099</config-substitution>
                            <config-substitution key="MinThreadPoolSize">200</config-substitution>
                            <config-substitution key="MaxThreadPoolSize">500</config-substitution>
                        </plugin-artifact>
                    </instance>
                </configuration>
            </plugin>
        </plugins>
    </build>

</project>