|
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
| 2 | +<!-- |
| 3 | + * The contents of this file are subject to the terms of the Common Development and |
| 4 | + * Distribution License (the License). You may not use this file except in compliance with the |
| 5 | + * License. |
| 6 | + * |
| 7 | + * You can obtain a copy of the License at legal/CDDLv1.0.txt. See the License for the |
| 8 | + * specific language governing permission and limitations under the License. |
| 9 | + * |
| 10 | + * When distributing Covered Software, include this CDDL Header Notice in each file and include |
| 11 | + * the License file at legal/CDDLv1.0.txt. If applicable, add the following below the CDDL |
| 12 | + * Header, with the fields enclosed by brackets [] replaced by your own identifying |
| 13 | + * information: "Portions copyright [year] [name of copyright owner]". |
| 14 | + * |
| 15 | + * Copyright 2017-2018 ForgeRock AS. |
| 16 | + * |
| 17 | +--> |
| 18 | + |
| 19 | +<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/xsd/maven-4.0.0.xsd"> |
| 20 | + |
| 21 | + <modelVersion>4.0.0</modelVersion> |
| 22 | + |
| 23 | + <artifactId>HTMLMessageNode</artifactId> |
| 24 | + |
| 25 | + <groupId>org.forgerock.am</groupId> |
| 26 | + <version>1.0.0</version> |
| 27 | + <name>Template for an Auth Tree Node maven project</name> |
| 28 | + <description>An Authentication Tree Node for ForgeRock's Identity Platform</description> |
| 29 | + |
| 30 | + <properties> |
| 31 | + <am.version>6.5.2</am.version> |
| 32 | + <maven.compiler.source>1.8</maven.compiler.source> |
| 33 | + <maven.compiler.target>1.8</maven.compiler.target> |
| 34 | + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 35 | + </properties> |
| 36 | + |
| 37 | + <dependencyManagement> |
| 38 | + <dependencies> |
| 39 | + <dependency> |
| 40 | + <groupId>org.forgerock.am</groupId> |
| 41 | + <artifactId>openam-auth-trees</artifactId> |
| 42 | + <type>pom</type> |
| 43 | + <scope>import</scope> |
| 44 | + <version>${am.version}</version> |
| 45 | + </dependency> |
| 46 | + </dependencies> |
| 47 | + </dependencyManagement> |
| 48 | + |
| 49 | + <dependencies> |
| 50 | + <dependency> |
| 51 | + <groupId>org.forgerock.am</groupId> |
| 52 | + <artifactId>openam-push-notification</artifactId> |
| 53 | + </dependency> |
| 54 | + <dependency> |
| 55 | + <groupId>org.forgerock.am</groupId> |
| 56 | + <artifactId>auth-node-api</artifactId> |
| 57 | + <scope>provided</scope> |
| 58 | + </dependency> |
| 59 | + <dependency> |
| 60 | + <groupId>org.forgerock.am</groupId> |
| 61 | + <artifactId>openam-guice-core</artifactId> |
| 62 | + <scope>provided</scope> |
| 63 | + </dependency> |
| 64 | + <dependency> |
| 65 | + <groupId>org.forgerock.am</groupId> |
| 66 | + <artifactId>openam-core</artifactId> |
| 67 | + <scope>provided</scope> |
| 68 | + </dependency> |
| 69 | + </dependencies> |
| 70 | + |
| 71 | + <repositories> |
| 72 | + <repository> |
| 73 | + <snapshots> |
| 74 | + <enabled>false</enabled> |
| 75 | + </snapshots> |
| 76 | + <id>forgerock-private-releases</id> |
| 77 | + <name>ForgeRock Private Release Repository</name> |
| 78 | + <url>http://maven.forgerock.org/repo/private-releases</url> |
| 79 | + </repository> |
| 80 | + </repositories> |
| 81 | + |
| 82 | +</project> |
0 commit comments