Add test-blueprint-kotlin-parent
[ccsdk/cds.git] / components / model-catalog / blueprint-model / test-blueprint / capability_cli / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3   ~  Copyright © 2019 IBM.
4   ~  Modification Copyright © 2018-2019 AT&T Intellectual Property.
5   ~
6   ~  Licensed under the Apache License, Version 2.0 (the "License");
7   ~  you may not use this file except in compliance with the License.
8   ~  You may obtain a copy of the License at
9   ~
10   ~      http://www.apache.org/licenses/LICENSE-2.0
11   ~
12   ~  Unless required by applicable law or agreed to in writing, software
13   ~  distributed under the License is distributed on an "AS IS" BASIS,
14   ~  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15   ~  See the License for the specific language governing permissions and
16   ~  limitations under the License.
17   -->
18
19 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 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
22     <parent>
23         <groupId>org.onap.ccsdk.cds.cba</groupId>
24         <artifactId>test-blueprint-model</artifactId>
25         <version>1.0.0-SNAPSHOT</version>
26     </parent>
27
28     <artifactId>capability_cli</artifactId>
29
30     <name>CBA - Test Capability CLI</name>
31     <description>CBA - Test Capability CLI</description>
32
33     <dependencies>
34         <dependency>
35             <groupId>org.onap.ccsdk.cds.blueprintsprocessor.functions</groupId>
36             <artifactId>cli-executor</artifactId>
37         </dependency>
38     </dependencies>
39
40     <build>
41         <plugins>
42             <plugin>
43                 <artifactId>maven-assembly-plugin</artifactId>
44                 <dependencies>
45                     <dependency>
46                         <groupId>org.onap.ccsdk.cds.blueprintsprocessor</groupId>
47                         <artifactId>cba-assembly-descriptor</artifactId>
48                         <version>1.0.0-SNAPSHOT</version>
49                     </dependency>
50                 </dependencies>
51                 <version>3.1.0</version>
52                 <executions>
53                     <execution>
54                         <id>cba</id>
55                         <phase>package</phase>
56                         <goals>
57                             <goal>single</goal>
58                         </goals>
59                         <configuration>
60                             <appendAssemblyId>false</appendAssemblyId>
61                             <descriptorRefs>
62                                 <descriptorRef>cba_zip</descriptorRef>
63                             </descriptorRefs>
64                         </configuration>
65                     </execution>
66                 </executions>
67             </plugin>
68         </plugins>
69     </build>
70 </project>