Maven Repository - POM file for Security server-security-config 2.1.6 2.1.6

Summary

Geronimo Framework, Configs :: Server Security Configuration.

Sample security configuration for a demo geronimo server. Not suitable for production use..

Declaration

Here is the list of declaration for server-security-config. 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>server-security-config</artifactId>
   <version>2.1.6</version>
</dependency>

If you think this Maven repository POM file listing for server-security-config 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 server-security-config-2.1.6 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
JEE Containergeronimo-gbean-deployer 2.1.6
The GBean Deployer
16
Securityj2ee-security 2.1.6
Basic Geronimo server security infrastructure
6

Depended by

The following table lists the most popular artifacts which are depending on server-security-config-2.1.6. Their categories and depend by count are also listed.

CategoryArtifactDepended By Count
Inversion of Controljasper 2.1.6
Geronimo Jasper jsp integration including injection support.
9

Plugin

The following plugins are used in the server-security-config-2.1.6.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: 956994 $ $Date: 2010-06-22 15:36:07 -0400 (Tue, 22 Jun 2010) $ -->

<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.6</version>
    </parent>
    
    <artifactId>server-security-config</artifactId>
    <name>Geronimo Framework, Configs :: Server Security Configuration</name>
    <packaging>car</packaging>

    <description>Sample security configuration for a demo geronimo server. Not suitable for production use.</description>
    
    <dependencies>
        <dependency>
            <groupId>org.apache.geronimo.framework</groupId>
            <artifactId>geronimo-gbean-deployer</artifactId>
            <version>${version}</version>
            <type>car</type>
            <scope>provided</scope>
        </dependency>
        
        <!-- parent -->
        <dependency>
            <groupId>org.apache.geronimo.framework</groupId>
            <artifactId>j2ee-security</artifactId>
            <version>${version}</version>
            <type>car</type>
        </dependency>
    </dependencies>
    
    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.geronimo.buildsupport</groupId>
                <artifactId>car-maven-plugin</artifactId>
                <configuration>
                    <deploymentConfigs>
                        <deploymentConfig>${gbeanDeployer}</deploymentConfig>
                    </deploymentConfigs>
                    <category>Security</category>
                    <useMavenDependencies>
                        <value>true</value>
                        <includeVersion>true</includeVersion>
                    </useMavenDependencies>
                    <instance>
                        <plugin-artifact>
                            <copy-file relative-to="server" dest-dir="var">security</copy-file>
                        </plugin-artifact>
                    </instance>
                </configuration>
            </plugin>
        </plugins>
    </build>

</project>