blob: 9dbb288d90a9f7319c644f4002a352aa0737b5d4 [file] [log] [blame]
sg481n43854a92017-08-03 17:27:34 -04001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 ============LICENSE_START====================================================
4 * org.onap.aai
5 * ===========================================================================
6 * Copyright © 2017 AT&T Intellectual Property. All rights reserved.
7 * Copyright © 2017 Amdocs
8 * ===========================================================================
9 * Licensed under the Apache License, Version 2.0 (the "License");
10 * you may not use this file except in compliance with the License.
11 * You may obtain a copy of the License at
12 *
13 * http://www.apache.org/licenses/LICENSE-2.0
14 *
15 * Unless required by applicable law or agreed to in writing, software
16 * distributed under the License is distributed on an "AS IS" BASIS,
17 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18 * See the License for the specific language governing permissions and
19 * limitations under the License.
20 * ============LICENSE_END====================================================
21 *
22 * ECOMP is a trademark and service mark of AT&T Intellectual Property.
23 *
24-->
25<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
26 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
27 <modelVersion>4.0.0</modelVersion>
28
29 <!-- No Parent on Purpose!!! -->
30 <artifactId>authz-client</artifactId>
31 <name>Authz Client</name>
32 <description>Client and XSD Generated code for Authz</description>
33 <groupId>com.att.authz</groupId>
34 <version>2.6</version>
35 <packaging>jar</packaging>
36 <url>https://github.com/att/AAF</url>
37 <licenses>
38 <license>
39 <name>BSD License</name>
40 <url> </url>
41 </license>
42 </licenses>
43 <developers>
44 <developer>
45 <name>Jonathan Gathman</name>
46 <email></email>
47 <organization>ATT</organization>
48 <organizationUrl></organizationUrl>
49 </developer>
50 </developers>
51
52 <properties>
53 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
54 <swm-distFiles-path>/opt/app/aft/${project.artifactId}/${project.version}</swm-distFiles-path>
55 <maven.test.failure.ignore>true</maven.test.failure.ignore>
56 </properties>
57
58 <dependencies>
59 <dependency>
60 <groupId>junit</groupId>
61 <artifactId>junit</artifactId>
62 <version>4.10</version>
63 <scope>test</scope>
64 </dependency>
65
66 </dependencies>
67
68 <build>
69 <plugins>
70 <plugin>
71 <groupId>org.codehaus.mojo</groupId>
72 <artifactId>jaxb2-maven-plugin</artifactId>
73 <version>1.3</version>
74 <executions>
75 <execution>
76 <phase>generate-sources</phase>
77 <goals>
78 <goal>xjc</goal>
79 </goals>
80 </execution>
81 </executions>
82 <configuration>
83 <schemaDirectory>src/main/xsd</schemaDirectory>
84 </configuration>
85 </plugin>
86 <plugin>
87 <groupId>org.apache.maven.plugins</groupId>
88 <artifactId>maven-compiler-plugin</artifactId>
89 <configuration>
90 <source>1.6</source>
91 <target>1.6</target>
92 </configuration>
93 </plugin>
94 <plugin>
95 <groupId>org.apache.maven.plugins</groupId>
96 <artifactId>maven-deploy-plugin</artifactId>
97 <version>2.5</version>
98 <configuration>
99 <skip>false</skip>
100 </configuration>
101 </plugin>
102
103 <!--This plugin's configuration is used to store Eclipse m2e settings
104 only. It has no influence on the Maven build itself. -->
105 <plugin>
106 <groupId>org.eclipse.m2e</groupId>
107 <artifactId>lifecycle-mapping</artifactId>
108 <version>1.0.0</version>
109 <configuration>
110 <lifecycleMappingMetadata>
111 <pluginExecutions>
112 <pluginExecution>
113 <pluginExecutionFilter>
114 <groupId>
115 org.codehaus.mojo
116 </groupId>
117 <artifactId>
118 jaxb2-maven-plugin
119 </artifactId>
120 <versionRange>
121 [1.3,)
122 </versionRange>
123 <goals>
124 <goal>xjc</goal>
125 </goals>
126 </pluginExecutionFilter>
127 <action>
128 <ignore></ignore>
129 </action>
130 </pluginExecution>
131 </pluginExecutions>
132 </lifecycleMappingMetadata>
133 </configuration>
134 </plugin>
135 <plugin>
136 <groupId>org.apache.maven.plugins</groupId>
137 <artifactId>maven-compiler-plugin</artifactId>
138 <version>2.3.2</version>
139 <configuration>
140 <source>1.6</source>
141 <target>1.6</target>
142 </configuration>
143 </plugin>
144
145 <plugin>
146 <groupId>org.apache.maven.plugins</groupId>
147 <artifactId>maven-javadoc-plugin</artifactId>
148 <configuration>
149 <failOnError>false</failOnError>
150 </configuration>
151 <executions>
152 <execution>
153 <id>attach-javadocs</id>
154 <goals>
155 <goal>jar</goal>
156 </goals>
157 </execution>
158 </executions>
159 </plugin>
160
161
162 <plugin>
163 <groupId>org.apache.maven.plugins</groupId>
164 <artifactId>maven-source-plugin</artifactId>
165 <version>2.2.1</version>
166 <executions>
167 <execution>
168 <id>attach-sources</id>
169 <goals>
170 <goal>jar-no-fork</goal>
171 </goals>
172 </execution>
173 </executions>
174 </plugin>
175
176 <plugin>
177 <groupId>org.sonatype.plugins</groupId>
178 <artifactId>nexus-staging-maven-plugin</artifactId>
179 <version>1.6.7</version>
180 <extensions>true</extensions>
181 <configuration>
182 <serverId>ossrhdme</serverId>
183 <nexusUrl>https://oss.sonatype.org/</nexusUrl>
184 <autoReleaseAfterClose>true</autoReleaseAfterClose>
185 </configuration>
186 </plugin>
187 </plugins>
188 </build>
189
190 <distributionManagement>
191 <snapshotRepository>
192 <id>ossrhdme</id>
193 <url>https://oss.sonatype.org/content/repositories/snapshots</url>
194 </snapshotRepository>
195 <repository>
196 <id>ossrhdme</id>
197 <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
198 </repository>
199 </distributionManagement>
200
201 <scm>
202 <connection>https://github.com/att/AAF.git</connection>
203 <developerConnection>${project.scm.connection}</developerConnection>
204 <url>http://github.com/att/AAF/tree/master</url>
205 </scm>
206
207</project>
208