Added SO-OOF/HAS API document
[optf/osdf.git] / pom.xml
1 <?xml version="1.0"?>
2 <!--
3     Copyright (c) 2018 Intel Corporation. All rights reserved.
4
5     Licensed under the Apache License, Version 2.0 (the "License"); you may
6     not use this file except in compliance with the License. You may obtain
7     a copy of the License at
8
9         http://www.apache.org/licenses/LICENSE-2.0
10
11     Unless required by applicable law or agreed to in writing, software
12     distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13     WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14     License for the specific language governing permissions and limitations
15     under the License.
16 -->
17 <project xmlns="http://maven.apache.org/POM/4.0.0"
18          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
19          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
20     <modelVersion>4.0.0</modelVersion>
21     <packaging>pom</packaging>
22
23     <parent>
24         <groupId>org.onap.oparent</groupId>
25         <artifactId>oparent-python</artifactId>
26         <version>1.1.0-SNAPSHOT</version>
27     </parent>
28
29     <groupId>org.onap.optf.osdf</groupId>
30     <artifactId>optf-osdf</artifactId>
31
32     <name>optf-osdf</name>
33     <version>1.1.0-SNAPSHOT</version>
34     <description>Optimization Service Design Framework</description>
35
36     <build>
37         <plugins>
38             <plugin>
39                 <artifactId>maven-assembly-plugin</artifactId>
40                 <configuration>
41                     <appendAssemblyId>false</appendAssemblyId>
42                     <descriptors>
43                         <descriptor>assembly.xml</descriptor>
44                     </descriptors>
45                 </configuration>
46                 <executions>
47                     <execution>
48                         <id>make-assembly</id>
49                         <phase>package</phase>
50                         <goals>
51                             <goal>single</goal>
52                         </goals>
53                     </execution>
54                 </executions>
55             </plugin>
56
57             <plugin>
58                 <groupId>org.apache.maven.plugins</groupId>
59                 <artifactId>maven-release-plugin</artifactId>
60             </plugin>
61             <plugin>
62                 <groupId>org.apache.maven.plugins</groupId>
63                 <artifactId>maven-deploy-plugin</artifactId>
64                 <version>2.8</version>
65                 <configuration>
66                     <retryFailedDeploymentCount>2</retryFailedDeploymentCount>
67                 </configuration>
68             </plugin>
69         </plugins>
70     </build>
71 </project>