blob: 56672b16e45fc46d79fd5a823df261cb47e90b00 [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>
65 </developers>
66
67
68 <dependencies>
69 <dependency>
70 <groupId>junit</groupId>
71 <artifactId>junit</artifactId>
72 <version>4.10</version>
73 <scope>test</scope>
74 </dependency>
75
76 </dependencies>
77
78 <build>
79 <plugins>
80 <plugin>
81 <groupId>org.jvnet.jaxb2.maven2</groupId>
82 <artifactId>maven-jaxb2-plugin</artifactId>
83 <version>0.8.2</version>
84 <executions>
85 <execution>
86 <goals>
87 <goal>generate</goal>
88 </goals>
89 </execution>
90 </executions>
91 <configuration>
92 <schemaDirectory>src/main/xsd</schemaDirectory>
93 </configuration>
94 </plugin>
95
96 <plugin>
97 <groupId>org.apache.maven.plugins</groupId>
98 <artifactId>maven-deploy-plugin</artifactId>
99 <version>2.5</version>
100 <configuration>
101 <skip>false</skip>
102 </configuration>
103 </plugin>
104
105 <plugin>
106 <groupId>org.apache.maven.plugins</groupId>
107 <artifactId>maven-compiler-plugin</artifactId>
108 <version>2.3.2</version>
109 <configuration>
110 <source>1.6</source>
111 <target>1.6</target>
112 </configuration>
113 </plugin>
114 </plugins>
115 </build>
116
117 <distributionManagement>
118 <repository>
119 <id>nexus</id>
120 <name>attarch-releases</name>
121 <url>http://mavencentral.it.att.com:8084/nexus/content/repositories/attarch-releases</url>
122 </repository>
123 <snapshotRepository>
124 <id>nexus</id>
125 <name>attarch-snapshots</name>
126 <url>http://mavencentral.it.att.com:8084/nexus/content/repositories/attarch-snapshots</url>
127 </snapshotRepository>
128 </distributionManagement>
129
130</project>
131