Update AAF project version to release docker image
[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         <artifactId>authz-client</artifactId>\r
31         <name>Authz Client</name>\r
32         <description>Client and XSD Generated code for Authz</description>\r
33         <groupId>org.onap.aaf.authz</groupId>\r
34         <version>1.0.1-SNAPSHOT</version>\r
35         <packaging>jar</packaging>\r
36         <url>https://github.com/att/AAF</url>\r
37         <licenses>\r
38                 <license>\r
39                 <name>BSD License</name>\r
40                 <url> </url>\r
41                 </license>\r
42         </licenses>\r
43         <developers>\r
44                 <developer>\r
45                 <name>Jonathan Gathman</name>\r
46                 <email></email>\r
47         <organization>ATT</organization>\r
48         <organizationUrl></organizationUrl>\r
49                 </developer>\r
50         </developers>\r
51         \r
52                 <properties>\r
53                 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>\r
54                 <swm-distFiles-path>/opt/app/aft/${project.artifactId}/${project.version}</swm-distFiles-path>\r
55                 <maven.test.failure.ignore>true</maven.test.failure.ignore>\r
56                 <project.cadiVersion>1.0.0-SNAPSHOT</project.cadiVersion>\r
57                 <sonar.language>java</sonar.language>\r
58                 <sonar.java.coveragePlugin>jacoco</sonar.java.coveragePlugin>\r
59                 <sonar.surefire.reportsPath>${project.build.directory}/surefire-reports</sonar.surefire.reportsPath>\r
60                 <sonar.jacoco.reportPath>${project.build.directory}/coverage-reports/jacoco.exec</sonar.jacoco.reportPath>\r
61                 <sonar.jacoco.itReportPath>${project.build.directory}/coverage-reports/jacoco-it.exec</sonar.jacoco.itReportPath>\r
62                 <sonar.jacoco.reportMissing.force.zero>true</sonar.jacoco.reportMissing.force.zero>\r
63                 <sonar.projectVersion>${project.version}</sonar.projectVersion>\r
64         <nexusproxy>https://nexus.onap.org</nexusproxy>\r
65                 <snapshotNexusPath>/content/repositories/snapshots/</snapshotNexusPath>\r
66                 <releaseNexusPath>/content/repositories/releases/</releaseNexusPath>\r
67                 <stagingNexusPath>/content/repositories/staging/</stagingNexusPath>\r
68                 <sitePath>/content/sites/site/${project.groupId}/${project.artifactId}/${project.version}</sitePath>\r
69         </properties>\r
70         \r
71         <dependencies>\r
72                 <dependency>\r
73                         <groupId>junit</groupId>\r
74                         <artifactId>junit</artifactId>\r
75                         <version>4.10</version>\r
76                         <scope>test</scope>\r
77                 </dependency>\r
78                         \r
79         </dependencies>\r
80 \r
81         <build>\r
82                         <plugins>\r
83                                 <plugin>\r
84                                         <groupId>org.codehaus.mojo</groupId>\r
85                                         <artifactId>jaxb2-maven-plugin</artifactId>\r
86                                         <version>1.3</version>\r
87                                         <executions>\r
88                                                 <execution>\r
89                                                         <phase>generate-sources</phase>\r
90                                                         <goals>\r
91                                                                 <goal>xjc</goal>\r
92                                                         </goals>\r
93                                                 </execution>\r
94                                         </executions>\r
95                                         <configuration>\r
96                                                 <schemaDirectory>src/main/xsd</schemaDirectory>\r
97                                         </configuration>\r
98                                 </plugin>\r
99                                 <plugin>\r
100                                         <groupId>org.apache.maven.plugins</groupId>\r
101                                         <artifactId>maven-compiler-plugin</artifactId>\r
102                                         <configuration>\r
103                                                 <source>1.6</source>\r
104                                                 <target>1.6</target>\r
105                                         </configuration>\r
106                                 </plugin>\r
107                                 \r
108 \r
109                                 <!--This plugin's configuration is used to store Eclipse m2e settings \r
110                                         only. It has no influence on the Maven build itself. -->\r
111                                 <plugin>\r
112                                         <groupId>org.eclipse.m2e</groupId>\r
113                                         <artifactId>lifecycle-mapping</artifactId>\r
114                                         <version>1.0.0</version>\r
115                                         <configuration>\r
116                                                 <lifecycleMappingMetadata>\r
117                                                         <pluginExecutions>\r
118                                                                 <pluginExecution>\r
119                                                                         <pluginExecutionFilter>\r
120                                                                                 <groupId>\r
121                                                                                         org.codehaus.mojo\r
122                                                                                 </groupId>\r
123                                                                                 <artifactId>\r
124                                                                                         jaxb2-maven-plugin\r
125                                                                                 </artifactId>\r
126                                                                                 <versionRange>\r
127                                                                                         [1.3,)\r
128                                                                                 </versionRange>\r
129                                                                                 <goals>\r
130                                                                                         <goal>xjc</goal>\r
131                                                                                 </goals>\r
132                                                                         </pluginExecutionFilter>\r
133                                                                         <action>\r
134                                                                                 <ignore></ignore>\r
135                                                                         </action>\r
136                                                                 </pluginExecution>\r
137                                                         </pluginExecutions>\r
138                                                 </lifecycleMappingMetadata>\r
139                                         </configuration>\r
140                                 </plugin>\r
141                                 <plugin>\r
142                                         <groupId>org.apache.maven.plugins</groupId>\r
143                                         <artifactId>maven-compiler-plugin</artifactId>\r
144                                         <version>2.3.2</version>\r
145                                         <configuration>\r
146                                                 <source>1.6</source>\r
147                                                 <target>1.6</target>\r
148                                         </configuration>\r
149                                 </plugin>\r
150                                 \r
151                 <plugin>\r
152                         <groupId>org.apache.maven.plugins</groupId>\r
153                         <artifactId>maven-javadoc-plugin</artifactId>\r
154                         <configuration>\r
155                         <failOnError>false</failOnError>\r
156                         </configuration>\r
157                         <executions>\r
158                                 <execution>\r
159                                         <id>attach-javadocs</id>\r
160                                         <goals>\r
161                                                 <goal>jar</goal>\r
162                                         </goals>\r
163                                 </execution>\r
164                         </executions>\r
165                 </plugin> \r
166            \r
167            \r
168                <plugin>\r
169                       <groupId>org.apache.maven.plugins</groupId>\r
170                       <artifactId>maven-source-plugin</artifactId>\r
171                       <version>2.2.1</version>\r
172                       <executions>\r
173                         <execution>\r
174                           <id>attach-sources</id>\r
175                           <goals>\r
176                             <goal>jar-no-fork</goal>\r
177                           </goals>\r
178                         </execution>\r
179                       </executions>\r
180                     </plugin>\r
181                         \r
182                          <plugin>\r
183                                 <groupId>org.sonatype.plugins</groupId>\r
184                                 <artifactId>nexus-staging-maven-plugin</artifactId>\r
185                                 <version>1.6.7</version>\r
186                                 <extensions>true</extensions>\r
187                                 <configuration>\r
188                                         <nexusUrl>${nexusproxy}</nexusUrl>\r
189                                         <stagingProfileId>176c31dfe190a</stagingProfileId>\r
190                                         <serverId>ecomp-staging</serverId>\r
191                                 </configuration>\r
192                         </plugin>               \r
193                         <plugin>\r
194                                 <groupId>org.jacoco</groupId>\r
195                                 <artifactId>jacoco-maven-plugin</artifactId>\r
196                                 <version>0.7.7.201606060606</version>\r
197                                 <configuration>\r
198                                         <dumpOnExit>true</dumpOnExit>\r
199                                         <includes>\r
200                                                 <include>org.onap.aaf.*</include>\r
201                                         </includes>\r
202                                 </configuration>\r
203                                 <executions>\r
204                                         <execution>\r
205                                                 <id>pre-unit-test</id>\r
206                                                 <goals>\r
207                                                         <goal>prepare-agent</goal>\r
208                                                 </goals>\r
209                                                 <configuration>\r
210                                                         <destFile>${project.build.directory}/coverage-reports/jacoco.exec</destFile>\r
211                                                         <!-- <append>true</append> -->\r
212                                                 </configuration>\r
213                                         </execution>\r
214                                         <execution>\r
215                                                 <id>pre-integration-test</id>\r
216                                                 <phase>pre-integration-test</phase>\r
217                                                 <goals>\r
218                                                         <goal>prepare-agent</goal>\r
219                                                 </goals>\r
220                                                 <configuration>\r
221                                                         <destFile>${project.build.directory}/coverage-reports/jacoco-it.exec</destFile>\r
222                                                         <!-- <append>true</append> -->\r
223                                                 </configuration>\r
224                                         </execution>\r
225                                         <execution>\r
226                         <goals>\r
227                             <goal>merge</goal>\r
228                         </goals>\r
229                         <phase>post-integration-test</phase>\r
230                         <configuration>\r
231                             <fileSets>\r
232                                 <fileSet implementation="org.apache.maven.shared.model.fileset.FileSet">\r
233                                     <directory>${project.build.directory}/coverage-reports</directory>\r
234                                     <includes>\r
235                                         <include>*.exec</include>\r
236                                     </includes>\r
237                                 </fileSet>\r
238                             </fileSets>\r
239                             <destFile>${project.build.directory}/jacoco-dev.exec</destFile>\r
240                         </configuration>\r
241                     </execution>\r
242                                 </executions>\r
243                         </plugin> \r
244                         </plugins>\r
245         </build>\r
246         \r
247         <distributionManagement>\r
248                 <repository>\r
249                         <id>ecomp-releases</id>\r
250                         <name>AAF Release Repository</name>\r
251                         <url>${nexusproxy}${releaseNexusPath}</url>\r
252                 </repository>\r
253                 <snapshotRepository>\r
254                         <id>ecomp-snapshots</id>\r
255                         <name>AAF Snapshot Repository</name>\r
256                         <url>${nexusproxy}${snapshotNexusPath}</url>\r
257                 </snapshotRepository>\r
258                 <site>\r
259                         <id>ecomp-site</id>\r
260                         <url>dav:${nexusproxy}${sitePath}</url>\r
261                 </site>\r
262         </distributionManagement>\r
263 <pluginRepositories>\r
264         <pluginRepository>\r
265             <id>onap-plugin-snapshots</id>\r
266             <url>https://nexus.onap.org/content/repositories/snapshots/</url>\r
267         </pluginRepository>\r
268     </pluginRepositories>\r
269         \r
270         <repositories>\r
271                 <repository>\r
272                         <id>central</id>\r
273                         <name>Maven 2 repository 2</name>\r
274                         <url>http://repo2.maven.org/maven2/</url>\r
275                 </repository>\r
276                 <repository>\r
277             <id>onap-jar-snapshots</id>\r
278             <url>https://nexus.onap.org/content/repositories/snapshots</url>\r
279         </repository>\r
280                 <repository>\r
281                         <id>spring-repo</id>\r
282                         <name>Spring repo</name>\r
283                         <url>https://artifacts.alfresco.com/nexus/content/repositories/public/</url>\r
284                 </repository>\r
285                 <repository>\r
286                         <id>repository.jboss.org-public</id>\r
287                         <name>JBoss.org Maven repository</name>\r
288                         <url>https://repository.jboss.org/nexus/content/groups/public</url>\r
289                 </repository>\r
290         </repositories>\r
291 </project>\r
292 \r