Instrumental | 71037c3 | 2018-03-26 13:51:48 -0700 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
| 3 | * ============LICENSE_START==================================================== |
| 4 | * org.onap.aaf |
| 5 | * =========================================================================== |
| 6 | * Copyright (c) 2017 AT&T Intellectual Property. All rights reserved. |
| 7 | * =========================================================================== |
| 8 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 9 | * you may not use this file except in compliance with the License. |
| 10 | * You may obtain a copy of the License at |
| 11 | * |
| 12 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 13 | * |
| 14 | * Unless required by applicable law or agreed to in writing, software |
| 15 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 16 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 17 | * See the License for the specific language governing permissions and |
| 18 | * limitations under the License. |
| 19 | * ============LICENSE_END==================================================== |
| 20 | * |
| 21 | --> |
| 22 | |
| 23 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 24 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
| 25 | <modelVersion>4.0.0</modelVersion> |
| 26 | <parent> |
| 27 | <groupId>org.onap.aaf.auth</groupId> |
| 28 | <artifactId>parent</artifactId> |
| 29 | <version>2.1.0-SNAPSHOT</version> |
| 30 | <relativePath>../pom.xml</relativePath> |
| 31 | </parent> |
| 32 | |
| 33 | <artifactId>aaf-auth-cmd</artifactId> |
| 34 | <name>AAF Auth Command</name> |
| 35 | <description>Command Line Processor for AAF Auth</description> |
| 36 | <packaging>jar</packaging> |
| 37 | |
| 38 | <properties> |
| 39 | <maven.test.failure.ignore>false</maven.test.failure.ignore> |
| 40 | </properties> |
| 41 | |
| 42 | <developers> |
| 43 | <developer> |
| 44 | <name>Jonathan Gathman</name> |
| 45 | <email>jonathan.gathman@att.com</email> |
| 46 | <organization>ATT</organization> |
| 47 | <roles> |
| 48 | <role>Architect</role> |
| 49 | <role>Lead Developer</role> |
| 50 | </roles> |
| 51 | </developer> |
| 52 | <developer> |
| 53 | <name>Gabe Maurer</name> |
| 54 | <email>gabe.maurer@att.com</email> |
| 55 | <organization>ATT</organization> |
| 56 | <roles> |
| 57 | <role>Developer</role> |
| 58 | </roles> |
| 59 | </developer> |
| 60 | <developer> |
| 61 | <name>Ian Howell</name> |
| 62 | <email>ian.howell@att.com</email> |
| 63 | <organization>ATT</organization> |
| 64 | <roles> |
| 65 | <role>Developer</role> |
| 66 | </roles> |
| 67 | </developer> |
Sai Gandham | e01703c | 2018-03-26 22:57:09 +0000 | [diff] [blame^] | 68 | <developer> |
| 69 | <name>Sai Gandham</name> |
| 70 | <email>sai.gandham@att.com</email> |
| 71 | <organization>ATT</organization> |
| 72 | <roles> |
| 73 | <role>Developer</role> |
| 74 | </roles> |
| 75 | </developer> |
Instrumental | 71037c3 | 2018-03-26 13:51:48 -0700 | [diff] [blame] | 76 | </developers> |
| 77 | |
| 78 | |
| 79 | <dependencies> |
| 80 | <dependency> |
| 81 | <groupId>org.onap.aaf.cadi</groupId> |
| 82 | <artifactId>aaf-cadi-aaf</artifactId> |
| 83 | </dependency> |
| 84 | |
| 85 | <dependency> |
| 86 | <groupId>org.onap.aaf.auth</groupId> |
| 87 | <artifactId>aaf-auth-core</artifactId> |
| 88 | </dependency> |
| 89 | |
| 90 | <dependency> |
| 91 | <groupId>jline</groupId> |
| 92 | <artifactId>jline</artifactId> |
| 93 | <version>2.14.2</version> |
| 94 | </dependency> |
| 95 | |
| 96 | </dependencies> |
| 97 | </project> |