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