pom.xml revision a622f6b14edb724c3cdbc8b5836a109d4ac80086
430N/A<?xml version="1.0" encoding="UTF-8"?>
2362N/A<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">
430N/A <modelVersion>4.0.0</modelVersion>
430N/A
430N/A<!--
430N/A * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
2362N/A *
430N/A * Copyright (c) 2011 ForgeRock AS. All Rights Reserved
2362N/A *
430N/A * The contents of this file are subject to the terms
430N/A * of the Common Development and Distribution License
430N/A * (the License). You may not use this file except in
430N/A * compliance with the License.
430N/A *
430N/A * You can obtain a copy of the License at
430N/A * http://forgerock.org/license/CDDLv1.0.html
430N/A * See the License for the specific language governing
430N/A * permission and limitations under the License.
430N/A *
430N/A * When distributing Covered Code, include this CDDL
2362N/A * Header Notice in each file and include the License file
2362N/A * at http://forgerock.org/license/CDDLv1.0.html
2362N/A * If applicable, add the following below the CDDL Header,
430N/A * with the fields enclosed by brackets [] replaced by
430N/A * your own identifying information:
430N/A * "Portions Copyrighted [year] [name of copyright owner]"
430N/A *
430N/A -->
430N/A
430N/A <!-- Parent Project -->
430N/A <parent>
430N/A <groupId>org.forgerock.openam</groupId>
430N/A <artifactId>openam-authentication</artifactId>
430N/A <version>10.1.0-SNAPSHOT</version>
430N/A </parent>
430N/A
430N/A <!-- Component Definition -->
430N/A <name>OpenAM Auth Radius</name>
430N/A <description>OpenAM Authentication Radius
430N/A </description>
430N/A <artifactId>openam-auth-radius</artifactId>
430N/A <version>10.1.0-SNAPSHOT</version>
430N/A <packaging>jar</packaging>
430N/A <organization>
430N/A <name>ForgeRock</name>
430N/A <url>http://www.forgerock.com</url>
430N/A </organization>
430N/A
430N/A <!-- Build -->
430N/A <build>
430N/A <plugins>
430N/A
430N/A <plugin>
430N/A <inherited>true</inherited>
430N/A <groupId>org.apache.maven.plugins</groupId>
430N/A <artifactId>maven-compiler-plugin</artifactId>
430N/A <configuration>
430N/A <source>${java.source.version}</source>
430N/A <target>${java.target.version}</target>
430N/A <encoding>UTF-8</encoding>
430N/A </configuration>
430N/A </plugin>
430N/A
430N/A <!-- Surefire Tests -->
430N/A <plugin>
430N/A <groupId>org.apache.maven.plugins</groupId>
430N/A <artifactId>maven-surefire-plugin</artifactId>
430N/A <configuration>
430N/A <systemPropertyVariables>
430N/A <templateLoaderPath>${notification.template.path}</templateLoaderPath>
430N/A </systemPropertyVariables>
430N/A <excludes>
430N/A <exclude>**/IT_*</exclude>
430N/A </excludes>
430N/A </configuration>
430N/A </plugin>
430N/A
430N/A <plugin>
430N/A <groupId>org.apache.maven.plugins</groupId>
430N/A <artifactId>maven-jar-plugin</artifactId>
430N/A <configuration>
430N/A <archive>
430N/A <index>true</index>
430N/A <manifest>
430N/A <addClasspath>true</addClasspath>
430N/A <classpathPrefix>lib/</classpathPrefix>
430N/A </manifest>
430N/A <manifestEntries>
430N/A <Specification-Title>OpenAM Auth Radius</Specification-Title>
430N/A <Specification-Version>${project.version} - ${maven.build.timestamp}</Specification-Version>
430N/A <Specification-Vendor>ForgeRock</Specification-Vendor>
430N/A <Implementation-Title>OpenAM Auth Radius</Implementation-Title>
430N/A <Implementation-Version>${project.version} - ${maven.build.timestamp}</Implementation-Version>
430N/A <Implementation-Vendor>ForgeRock</Implementation-Vendor>
430N/A <Built-By>${user.name}</Built-By>
430N/A <Build-Jdk>${java.version}</Build-Jdk>
430N/A <Build-Time>${maven.build.timestamp}</Build-Time>
430N/A <Version>${project.version}</Version>
430N/A <Create-On>${maven.build.timestamp}</Create-On>
430N/A <SVN-Revision>R${svn-revision.revision}</SVN-Revision>
430N/A <!-- TODO Add License to Manifest -->
430N/A <License></License>
430N/A </manifestEntries>
430N/A </archive>
430N/A </configuration>
430N/A </plugin>
430N/A
430N/A </plugins>
430N/A
430N/A <resources>
430N/A <resource>
430N/A <filtering>false</filtering>
430N/A <directory>src/main/resources</directory>
430N/A <includes>
430N/A <include>**/*</include>
430N/A </includes>
430N/A <excludes>
430N/A <exclude>version_information.txt</exclude>
430N/A </excludes>
430N/A </resource>
430N/A <resource>
430N/A <filtering>true</filtering>
430N/A <directory>src/main/resources</directory>
430N/A <includes>
430N/A <include>version_information.txt</include>
430N/A </includes>
430N/A </resource>
430N/A </resources>
430N/A <testResources>
430N/A <testResource>
430N/A <filtering>false</filtering>
430N/A <directory>src/test/resources</directory>
<includes>
<include>**/*</include>
</includes>
</testResource>
</testResources>
</build>
<dependencies>
<dependency>
<groupId>org.forgerock.openam</groupId>
<artifactId>openam-shared</artifactId>
<version>10.1.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>org.forgerock.openam</groupId>
<artifactId>openam-core</artifactId>
<version>10.1.0-SNAPSHOT</version>
</dependency>
</dependencies>
</project>