blob: 2423c53046d6a22ab22811fd04c2b5c82ba02fc8 [file] [log] [blame]
Instrumentala20accc2018-03-26 13:49:56 -07001<?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<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
23 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
24 <modelVersion>4.0.0</modelVersion>
25 <name>AAF CADI Sample OAuth EndUser</name>
26 <groupId>org.onap.aaf.cadi</groupId>
27 <version>1.5.0-SNAPSHOT</version>
28 <artifactId>aaf-cadi-oauth-enduser</artifactId>
29
30 <packaging>jar</packaging>
31
32 <developers>
33 <developer>
34 <name>Jonathan Gathman</name>
35 <email>jonathan.gathman@att.com</email>
36 <organization>ATT</organization>
37 <roles>
38 <role>Architect</role>
39 <role>Lead Developer</role>
40 </roles>
41 </developer>
42 <developer>
43 <name>Gabe Maurer</name>
44 <email>gabe.maurer@att.com</email>
45 <organization>ATT</organization>
46 <roles>
47 <role>Developer</role>
48 </roles>
49 </developer>
50 <developer>
51 <name>Ian Howell</name>
52 <email>ian.howell@att.com</email>
53 <organization>ATT</organization>
54 <roles>
55 <role>Developer</role>
56 </roles>
57 </developer>
58 </developers>
59
60 <dependencies>
61 <dependency>
62 <groupId>org.onap.aaf.cadi</groupId>
63 <artifactId>aaf-cadi-core</artifactId>
64 <version>1.5.0-SNAPSHOT</version>
65 </dependency>
66 <dependency>
67 <groupId>org.onap.aaf.cadi</groupId>
68 <artifactId>aaf-cadi-aaf</artifactId>
69 <version>1.5.0-SNAPSHOT</version>
70 </dependency>
71 </dependencies>
72
73 <build>
74 <pluginManagement>
75 <plugins>
76 <plugin>
77 <groupId>org.apache.maven.plugins</groupId>
78 <artifactId>maven-compiler-plugin</artifactId>
79 <version>2.3.2</version>
80 <configuration>
81 <source>1.8</source>
82 <target>1.8</target>
83 </configuration>
84 </plugin>
85
86 <plugin>
87 <groupId>org.apache.maven.plugins</groupId>
88 <version>2.4</version>
89 <artifactId>maven-jar-plugin</artifactId>
90 <configuration>
91 <outputDirectory>target</outputDirectory>
92 </configuration>
93 </plugin>
94 <plugin>
95 <artifactId>maven-assembly-plugin</artifactId>
96 <version>2.4</version>
97 <configuration>
98 <archive>
99 <manifest>
100 <mainClass>org.onap.aaf.cadi.enduser.OAuthExample</mainClass>
101 </manifest>
102 </archive>
103 <descriptors>
104 <descriptor>src/main/assemble/cadi-oauth-enduser-assemble.xml</descriptor>
105 </descriptors>
106 </configuration>
107 </plugin>
108 </plugins>
109 </pluginManagement>
110 </build>
111
112</project>