pom.xml revision f0b8f6dd844f8752946b865bdd44175863b15812
80ca0b9f5ad61b2335af25d4dcf25a04ebfcbc91Peter Major<?xml version="1.0" encoding="UTF-8"?>
80ca0b9f5ad61b2335af25d4dcf25a04ebfcbc91Peter Major<!--
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 2012-2016 ForgeRock AS.
80ca0b9f5ad61b2335af25d4dcf25a04ebfcbc91Peter Major-->
1f48f8236de7de97be1c6b9d06bef50b379c8801jenkins<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">
80ca0b9f5ad61b2335af25d4dcf25a04ebfcbc91Peter Major <modelVersion>4.0.0</modelVersion>
80ca0b9f5ad61b2335af25d4dcf25a04ebfcbc91Peter Major
80ca0b9f5ad61b2335af25d4dcf25a04ebfcbc91Peter Major <!-- Parent Project -->
80ca0b9f5ad61b2335af25d4dcf25a04ebfcbc91Peter Major <parent>
80ca0b9f5ad61b2335af25d4dcf25a04ebfcbc91Peter Major <groupId>org.forgerock.openam</groupId>
80ca0b9f5ad61b2335af25d4dcf25a04ebfcbc91Peter Major <artifactId>openam-cli</artifactId>
7c0e808d02c2c2e2008cf8ccdaee6400f5834387Joe Bandenburg <version>14.0.0-SNAPSHOT</version>
80ca0b9f5ad61b2335af25d4dcf25a04ebfcbc91Peter Major </parent>
80ca0b9f5ad61b2335af25d4dcf25a04ebfcbc91Peter Major
80ca0b9f5ad61b2335af25d4dcf25a04ebfcbc91Peter Major <!-- Component Definition -->
80ca0b9f5ad61b2335af25d4dcf25a04ebfcbc91Peter Major <name>OpenAM CLI Definitions</name>
80ca0b9f5ad61b2335af25d4dcf25a04ebfcbc91Peter Major <description>OpenAM Command Line Definitions</description>
80ca0b9f5ad61b2335af25d4dcf25a04ebfcbc91Peter Major <artifactId>openam-cli-definitions</artifactId>
80ca0b9f5ad61b2335af25d4dcf25a04ebfcbc91Peter Major <packaging>jar</packaging>
80ca0b9f5ad61b2335af25d4dcf25a04ebfcbc91Peter Major
80ca0b9f5ad61b2335af25d4dcf25a04ebfcbc91Peter Major <!-- Build -->
80ca0b9f5ad61b2335af25d4dcf25a04ebfcbc91Peter Major <build>
80ca0b9f5ad61b2335af25d4dcf25a04ebfcbc91Peter Major <plugins>
80ca0b9f5ad61b2335af25d4dcf25a04ebfcbc91Peter Major <plugin>
80ca0b9f5ad61b2335af25d4dcf25a04ebfcbc91Peter Major <groupId>org.apache.maven.plugins</groupId>
80ca0b9f5ad61b2335af25d4dcf25a04ebfcbc91Peter Major <artifactId>maven-jar-plugin</artifactId>
80ca0b9f5ad61b2335af25d4dcf25a04ebfcbc91Peter Major <configuration>
80ca0b9f5ad61b2335af25d4dcf25a04ebfcbc91Peter Major <archive>
80ca0b9f5ad61b2335af25d4dcf25a04ebfcbc91Peter Major <index>true</index>
80ca0b9f5ad61b2335af25d4dcf25a04ebfcbc91Peter Major <manifestEntries>
80ca0b9f5ad61b2335af25d4dcf25a04ebfcbc91Peter Major <Specification-Title>OpenAM CLI Definitions</Specification-Title>
80ca0b9f5ad61b2335af25d4dcf25a04ebfcbc91Peter Major <Specification-Version>${project.version} - ${maven.build.timestamp}</Specification-Version>
80ca0b9f5ad61b2335af25d4dcf25a04ebfcbc91Peter Major <Specification-Vendor>ForgeRock</Specification-Vendor>
80ca0b9f5ad61b2335af25d4dcf25a04ebfcbc91Peter Major <Implementation-Title>OpenAM CLI Definitions</Implementation-Title>
80ca0b9f5ad61b2335af25d4dcf25a04ebfcbc91Peter Major <Implementation-Version>${project.version} - ${maven.build.timestamp}
80ca0b9f5ad61b2335af25d4dcf25a04ebfcbc91Peter Major </Implementation-Version>
80ca0b9f5ad61b2335af25d4dcf25a04ebfcbc91Peter Major <Implementation-Vendor>ForgeRock</Implementation-Vendor>
80ca0b9f5ad61b2335af25d4dcf25a04ebfcbc91Peter Major <Built-By>${user.name}</Built-By>
80ca0b9f5ad61b2335af25d4dcf25a04ebfcbc91Peter Major <Build-Jdk>${java.version}</Build-Jdk>
80ca0b9f5ad61b2335af25d4dcf25a04ebfcbc91Peter Major <Build-Time>${maven.build.timestamp}</Build-Time>
80ca0b9f5ad61b2335af25d4dcf25a04ebfcbc91Peter Major <Version>${project.version}</Version>
80ca0b9f5ad61b2335af25d4dcf25a04ebfcbc91Peter Major <Create-On>${maven.build.timestamp}</Create-On>
bf48db3deadd0c664202d879926139b7df9d94f1Peter Major <Revision>${git.short.sha1}</Revision>
80ca0b9f5ad61b2335af25d4dcf25a04ebfcbc91Peter Major <!-- TODO Add License to Manifest -->
1f48f8236de7de97be1c6b9d06bef50b379c8801jenkins <License />
80ca0b9f5ad61b2335af25d4dcf25a04ebfcbc91Peter Major </manifestEntries>
80ca0b9f5ad61b2335af25d4dcf25a04ebfcbc91Peter Major </archive>
80ca0b9f5ad61b2335af25d4dcf25a04ebfcbc91Peter Major </configuration>
80ca0b9f5ad61b2335af25d4dcf25a04ebfcbc91Peter Major </plugin>
80ca0b9f5ad61b2335af25d4dcf25a04ebfcbc91Peter Major </plugins>
80ca0b9f5ad61b2335af25d4dcf25a04ebfcbc91Peter Major </build>
80ca0b9f5ad61b2335af25d4dcf25a04ebfcbc91Peter Major</project>