ef6bf4d8e4e268bff163a12902607712e5f4159aDavid Goldsmith<?xml version="1.0" encoding="UTF-8"?>
ef6bf4d8e4e268bff163a12902607712e5f4159aDavid Goldsmith<!--
f0b8f6dd844f8752946b865bdd44175863b15812Peter Major * The contents of this file are subject to the terms of the Common Development and
f0b8f6dd844f8752946b865bdd44175863b15812Peter Major * Distribution License (the License). You may not use this file except in compliance with the
f0b8f6dd844f8752946b865bdd44175863b15812Peter Major * License.
f0b8f6dd844f8752946b865bdd44175863b15812Peter Major *
f0b8f6dd844f8752946b865bdd44175863b15812Peter Major * You can obtain a copy of the License at legal/CDDLv1.0.txt. See the License for the
f0b8f6dd844f8752946b865bdd44175863b15812Peter Major * specific language governing permission and limitations under the License.
f0b8f6dd844f8752946b865bdd44175863b15812Peter Major *
f0b8f6dd844f8752946b865bdd44175863b15812Peter Major * When distributing Covered Software, include this CDDL Header Notice in each file and include
f0b8f6dd844f8752946b865bdd44175863b15812Peter Major * the License file at legal/CDDLv1.0.txt. If applicable, add the following below the CDDL
f0b8f6dd844f8752946b865bdd44175863b15812Peter Major * Header, with the fields enclosed by brackets [] replaced by your own identifying
f0b8f6dd844f8752946b865bdd44175863b15812Peter Major * information: "Portions copyright [year] [name of copyright owner]".
f0b8f6dd844f8752946b865bdd44175863b15812Peter Major *
f0b8f6dd844f8752946b865bdd44175863b15812Peter Major * Copyright 2013-2016 ForgeRock AS.
ef6bf4d8e4e268bff163a12902607712e5f4159aDavid Goldsmith-->
ef6bf4d8e4e268bff163a12902607712e5f4159aDavid Goldsmith<project xmlns="http://maven.apache.org/POM/4.0.0"
ef6bf4d8e4e268bff163a12902607712e5f4159aDavid Goldsmith xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
ef6bf4d8e4e268bff163a12902607712e5f4159aDavid Goldsmith xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
ef6bf4d8e4e268bff163a12902607712e5f4159aDavid Goldsmith http://maven.apache.org/xsd/maven-4.0.0.xsd">
ef6bf4d8e4e268bff163a12902607712e5f4159aDavid Goldsmith <modelVersion>4.0.0</modelVersion>
ef6bf4d8e4e268bff163a12902607712e5f4159aDavid Goldsmith
ef6bf4d8e4e268bff163a12902607712e5f4159aDavid Goldsmith <groupId>org.forgerock.openam.examples</groupId>
ef6bf4d8e4e268bff163a12902607712e5f4159aDavid Goldsmith <artifactId>policy-evaluation-plugin</artifactId>
ef6bf4d8e4e268bff163a12902607712e5f4159aDavid Goldsmith <version>14.0.0-SNAPSHOT</version>
ef6bf4d8e4e268bff163a12902607712e5f4159aDavid Goldsmith <packaging>jar</packaging>
ef6bf4d8e4e268bff163a12902607712e5f4159aDavid Goldsmith
fba815ec883afa7d9675096f5266e43b224bbec4Peter Major <name>OpenAM Policy Evaluation Plugin</name>
fba815ec883afa7d9675096f5266e43b224bbec4Peter Major
ef6bf4d8e4e268bff163a12902607712e5f4159aDavid Goldsmith <properties>
ef6bf4d8e4e268bff163a12902607712e5f4159aDavid Goldsmith <openam.version>14.0.0-SNAPSHOT</openam.version>
ef6bf4d8e4e268bff163a12902607712e5f4159aDavid Goldsmith <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
ef6bf4d8e4e268bff163a12902607712e5f4159aDavid Goldsmith </properties>
ef6bf4d8e4e268bff163a12902607712e5f4159aDavid Goldsmith
ef6bf4d8e4e268bff163a12902607712e5f4159aDavid Goldsmith <repositories>
ef6bf4d8e4e268bff163a12902607712e5f4159aDavid Goldsmith <repository>
ef6bf4d8e4e268bff163a12902607712e5f4159aDavid Goldsmith <id>forgerock-releases</id>
ef6bf4d8e4e268bff163a12902607712e5f4159aDavid Goldsmith <url>http://maven.forgerock.org/repo/releases</url>
ef6bf4d8e4e268bff163a12902607712e5f4159aDavid Goldsmith </repository>
ef6bf4d8e4e268bff163a12902607712e5f4159aDavid Goldsmith <repository>
ef6bf4d8e4e268bff163a12902607712e5f4159aDavid Goldsmith <id>forgerock-snapshots</id>
ef6bf4d8e4e268bff163a12902607712e5f4159aDavid Goldsmith <url>http://maven.forgerock.org/repo/snapshots</url>
ef6bf4d8e4e268bff163a12902607712e5f4159aDavid Goldsmith </repository>
ef6bf4d8e4e268bff163a12902607712e5f4159aDavid Goldsmith </repositories>
ef6bf4d8e4e268bff163a12902607712e5f4159aDavid Goldsmith
ef6bf4d8e4e268bff163a12902607712e5f4159aDavid Goldsmith <dependencies>
ef6bf4d8e4e268bff163a12902607712e5f4159aDavid Goldsmith <dependency>
ef6bf4d8e4e268bff163a12902607712e5f4159aDavid Goldsmith <groupId>org.forgerock.openam</groupId>
ef6bf4d8e4e268bff163a12902607712e5f4159aDavid Goldsmith <artifactId>openam-entitlements</artifactId>
ef6bf4d8e4e268bff163a12902607712e5f4159aDavid Goldsmith <version>${openam.version}</version>
ef6bf4d8e4e268bff163a12902607712e5f4159aDavid Goldsmith </dependency>
ef6bf4d8e4e268bff163a12902607712e5f4159aDavid Goldsmith </dependencies>
ef6bf4d8e4e268bff163a12902607712e5f4159aDavid Goldsmith
ef6bf4d8e4e268bff163a12902607712e5f4159aDavid Goldsmith <build>
ef6bf4d8e4e268bff163a12902607712e5f4159aDavid Goldsmith <plugins>
ef6bf4d8e4e268bff163a12902607712e5f4159aDavid Goldsmith <plugin>
ef6bf4d8e4e268bff163a12902607712e5f4159aDavid Goldsmith <groupId>org.apache.maven.plugins</groupId>
ef6bf4d8e4e268bff163a12902607712e5f4159aDavid Goldsmith <artifactId>maven-compiler-plugin</artifactId>
ef6bf4d8e4e268bff163a12902607712e5f4159aDavid Goldsmith <version>3.1</version>
ef6bf4d8e4e268bff163a12902607712e5f4159aDavid Goldsmith <configuration>
ef6bf4d8e4e268bff163a12902607712e5f4159aDavid Goldsmith <source>1.6</source>
ef6bf4d8e4e268bff163a12902607712e5f4159aDavid Goldsmith <target>1.6</target>
ef6bf4d8e4e268bff163a12902607712e5f4159aDavid Goldsmith </configuration>
ef6bf4d8e4e268bff163a12902607712e5f4159aDavid Goldsmith </plugin>
ef6bf4d8e4e268bff163a12902607712e5f4159aDavid Goldsmith </plugins>
ef6bf4d8e4e268bff163a12902607712e5f4159aDavid Goldsmith </build>
ef6bf4d8e4e268bff163a12902607712e5f4159aDavid Goldsmith</project>
ef6bf4d8e4e268bff163a12902607712e5f4159aDavid Goldsmith