jetspeed-security
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.apache.portals.jetspeed-2</groupId>
<artifactId>jetspeed-security</artifactId>
<version>2.1.4</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<!--
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.
$Id:$
-->
<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>
<prerequisites>
<maven>2.0.4</maven>
</prerequisites>
<!-- POM Identification -->
<artifactId>jetspeed-security</artifactId>
<parent>
<groupId>org.apache.portals.jetspeed-2</groupId>
<artifactId>components</artifactId>
<version>2.1.4</version>
<relativePath>../pom.xml</relativePath>
</parent>
<packaging>jar</packaging>
<name>Jetspeed-2 Security Components</name>
<description>
Security Components
</description>
<!-- Dependencies -->
<dependencies>
<!-- Build Dependencies -->
<dependency>
<groupId>${pom.groupId}</groupId>
<artifactId>jetspeed-rdbms</artifactId>
</dependency>
<dependency>
<groupId>${pom.groupId}</groupId>
<artifactId>jetspeed-prefs</artifactId>
</dependency>
<dependency>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
</dependency>
<dependency>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</dependency>
<dependency>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
</dependency>
<!--
Note: junit is normally required only for test, but
in this case, abstract test cases are included in the
component build... this should probably be fixed...
for now, assume that junit will be provided if these
test classes are used.
-->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>provided</scope>
</dependency>
<!-- Test Dependencies -->
<dependency>
<groupId>${pom.groupId}</groupId>
<artifactId>etc</artifactId>
<type>pom</type>
<scope>test</scope>
</dependency>
</dependencies>
<!-- Build Configuration -->
<build>
<!-- Test Resources -->
<testResources>
<testResource>
<directory>src/java</directory>
<excludes>
<exclude>**/*.java</exclude>
<exclude>**/JETSPEED-INF/**</exclude>
</excludes>
</testResource>
<testResource>
<directory>src/test</directory>
<excludes>
<exclude>**/*.java</exclude>
</excludes>
</testResource>
<testResource>
<directory>../../etc/log4j</directory>
</testResource>
<testResource>
<directory>../../etc/db-ojb</directory>
</testResource>
<testResource>
<directory>../../src/webapp/WEB-INF/assembly</directory>
</testResource>
</testResources>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<!--
Bug: excludes dont work with multilevel test
directory: no tests are run. Using multiple
includes in its place
<excludes>
<exclude>**/spi/ldap/TestLdap*.java</exclude>
</excludes>
-->
<includes>
<include>**/security/Test*.java</include>
<include>**/security/spi/Test*.java</include>
</includes>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
<executions>
<execution>
<id>hot-deploy-component</id>
<phase>install</phase>
<configuration>
<tasks>
<ant target="hot-deploy-jar" antfile="build.xml" dir="${basedir}/../../app-servers" inheritall="off">
<property name="org.apache.jetspeed.deploy.enable"
value="${org.apache.jetspeed.env.hotdeploy}"/>
<property name="org.apache.jetspeed.deploy.target"
value="${org.apache.jetspeed.env.deploy.target}"/>
<property name="org.apache.jetspeed.server.home"
value="${org.apache.jetspeed.server.home}"/>
<property name="org.apache.jetspeed.deploy.groupid"
value="${pom.groupId}"/>
<property name="org.apache.jetspeed.deploy.artifactid"
value="${pom.artifactId}"/>
<property name="org.apache.jetspeed.deploy.version"
value="${pom.version}"/>
</ant>
</tasks>
</configuration>
<goals>
<goal>run</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<!-- Project Information -->
<scm>
<connection>scm:svn:http://svn.apache.org/repos/asf/portals/jetspeed-2/portal/branches/JETSPEED-2.1.4/components/security</connection>
<developerConnection>scm:svn:https://svn.apache.org/repos/asf/portals/jetspeed-2/portal/branches/JETSPEED-2.1.4/components/security</developerConnection>
<url>http://svn.apache.org/viewcvs.cgi/portals/jetspeed-2/portal/branches/JETSPEED-2.1.4/components/security/</url>
</scm>
</project>