blob: d4f5b1ff1809a32b2b7c3ee965d0c6b272aa3a91 [file] [log] [blame]
Instrumental71037c32018-03-26 13:51:48 -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/maven-v4_0_0.xsd">
24 <modelVersion>4.0.0</modelVersion>
25
26 <!-- No Parent on Purpose!!! -->
27 <artifactId>aaf-auth-client</artifactId>
28 <name>AAF Auth Client</name>
29 <description>XSD Generated classes for AAF Auth</description>
30 <groupId>org.onap.aaf.auth</groupId>
31 <version>2.10-SNAPSHOT</version>
32 <packaging>jar</packaging>
33
34 <properties>
35 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
36 <maven.test.failure.ignore>true</maven.test.failure.ignore>
37 </properties>
38
39 <developers>
40 <developer>
41 <name>Jonathan Gathman</name>
42 <email>jonathan.gathman@att.com</email>
43 <organization>ATT</organization>
44 <roles>
45 <role>Architect</role>
46 <role>Lead Developer</role>
47 </roles>
48 </developer>
49 <developer>
50 <name>Gabe Maurer</name>
51 <email>gabe.maurer@att.com</email>
52 <organization>ATT</organization>
53 <roles>
54 <role>Developer</role>
55 </roles>
56 </developer>
57 <developer>
58 <name>Ian Howell</name>
59 <email>ian.howell@att.com</email>
60 <organization>ATT</organization>
61 <roles>
62 <role>Developer</role>
63 </roles>
64 </developer>
Sai Gandhame01703c2018-03-26 22:57:09 +000065 <developer>
66 <name>Sai Gandham</name>
67 <email>sai.gandham@att.com</email>
68 <organization>ATT</organization>
69 <roles>
70 <role>Developer</role>
71 </roles>
72 </developer>
Instrumental71037c32018-03-26 13:51:48 -070073 </developers>
74
75
76 <dependencies>
77 <dependency>
78 <groupId>junit</groupId>
79 <artifactId>junit</artifactId>
80 <version>4.10</version>
81 <scope>test</scope>
82 </dependency>
83
84 </dependencies>
85
86 <build>
87 <plugins>
88 <plugin>
89 <groupId>org.jvnet.jaxb2.maven2</groupId>
90 <artifactId>maven-jaxb2-plugin</artifactId>
91 <version>0.8.2</version>
92 <executions>
93 <execution>
94 <goals>
95 <goal>generate</goal>
96 </goals>
97 </execution>
98 </executions>
99 <configuration>
100 <schemaDirectory>src/main/xsd</schemaDirectory>
101 </configuration>
102 </plugin>
103
104 <plugin>
105 <groupId>org.apache.maven.plugins</groupId>
106 <artifactId>maven-deploy-plugin</artifactId>
107 <version>2.5</version>
108 <configuration>
109 <skip>false</skip>
110 </configuration>
111 </plugin>
112
113 <plugin>
114 <groupId>org.apache.maven.plugins</groupId>
115 <artifactId>maven-compiler-plugin</artifactId>
116 <version>2.3.2</version>
117 <configuration>
118 <source>1.6</source>
119 <target>1.6</target>
120 </configuration>
121 </plugin>
122 </plugins>
123 </build>
124
Instrumental71037c32018-03-26 13:51:48 -0700125
126</project>
127