Geronimo Framework, Configs :: GBean Deployer.
The GBean Deployer.
Here is the list of declaration for geronimo-gbean-deployer. 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>geronimo-gbean-deployer</artifactId> <version>2.1</version> </dependency>
If you think this Maven repository POM file listing for geronimo-gbean-deployer is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Apache License.
The geronimo-gbean-deployer-2.1 has 6 dependencies.The most popular ones are listed in the following table along with their categories and number of artifacts depending on them.
Category | Artifact | Depended By Count |
---|---|---|
JEE Container | plugin 2.1 Plugin management services including the installer. | 7 |
The following table lists the most popular artifacts which are depending on geronimo-gbean-deployer-2.1. Their categories and depend by count are also listed.
Category | Artifact | Depended By Count |
---|---|---|
JEE Container | j2ee-deployer 2.1 Basic JavaEE deployer functionality including the ear deployer. | 13 |
JEE Container | j2ee-server 2.1 Basic geronimo JavaEE support components including the transaction manager and connector framework. | 8 |
Security | server-security-config 2.1 Sample security configuration for a demo geronimo server. Not suitable for production use. | 5 |
Security | j2ee-security 2.1 Basic Geronimo server security infrastructure | 7 |
The following plugins are used in the geronimo-gbean-deployer-2.1.jar
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: 620034 $ $Date: 2008-02-08 18:23:51 -0500 (Fri, 08 Feb 2008) $ --> <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</version> </parent> <artifactId>geronimo-gbean-deployer</artifactId> <name>Geronimo Framework, Configs :: GBean Deployer</name> <packaging>car</packaging> <description> The GBean Deployer </description> <dependencies> <dependency> <groupId>org.apache.geronimo.framework</groupId> <artifactId>xmlbeans</artifactId> <version>${version}</version> <type>car</type> </dependency> <dependency> <groupId>org.apache.geronimo.framework</groupId> <artifactId>geronimo-common</artifactId> <version>${version}</version> </dependency> <dependency> <groupId>org.apache.geronimo.framework</groupId> <artifactId>geronimo-deployment</artifactId> <version>${version}</version> </dependency> <dependency> <groupId>org.apache.geronimo.framework</groupId> <artifactId>geronimo-service-builder</artifactId> <version>${version}</version> </dependency> <dependency> <groupId>org.apache.geronimo.framework</groupId> <artifactId>plugin</artifactId> <version>${version}</version> <type>car</type> </dependency> <dependency> <groupId>org.apache.geronimo.framework</groupId> <artifactId>geronimo-gbean-deployer-bootstrap</artifactId> <version>${version}</version> <type>car</type> <scope>provided</scope> </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>false</value> </useMavenDependencies> <dependencies> <dependency> <groupId>org.apache.geronimo.framework</groupId> <artifactId>xmlbeans</artifactId> <version>${version}</version> <type>car</type> </dependency> <dependency> <groupId>org.apache.geronimo.framework</groupId> <artifactId>geronimo-common</artifactId> <version>${version}</version> <type>jar</type> </dependency> <!-- needed by the plan --> <dependency> <groupId>org.apache.geronimo.framework</groupId> <artifactId>geronimo-deployment</artifactId> <version>${version}</version> <type>jar</type> </dependency> <dependency> <groupId>org.apache.geronimo.framework</groupId> <artifactId>geronimo-service-builder</artifactId> <version>${version}</version> <type>jar</type> </dependency> <dependency> <groupId>org.apache.geronimo.framework</groupId> <artifactId>plugin</artifactId> <version>${version}</version> <type>car</type> <import>classes</import> </dependency> </dependencies> <instance> <plugin-artifact> <config-xml-content> <gbean name="Deployer"> <attribute name="remoteDeployAddress">http://#{RemoteDeployHostname}:#{HTTPPort + PortOffset}</attribute> </gbean> </config-xml-content> <config-xml-content server="offline"/> <config-substitution key="RemoteDeployHostname">localhost</config-substitution> </plugin-artifact> </instance> </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>shitty-maven-plugin</artifactId> <executions> <execution> <goals> <goal>clean</goal> <goal>install</goal> <goal>test</goal> </goals> <configuration> <projects> <fileset> <directory>src/it</directory> <includes> <include>*/pom.xml</include> </includes> </fileset> </projects> </configuration> </execution> </executions> </plugin> </plugins> </build> </project>