2c6da2e7f90b542e1a4be75c97f19a56f51b87ba
[ccsdk/cds.git] / ms / blueprintsprocessor / modules / inbounds / selfservice-api / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3   ~  Copyright © 2017-2018 AT&T Intellectual Property.
4   ~
5   ~  Licensed under the Apache License, Version 2.0 (the "License");
6   ~  you may not use this file except in compliance with the License.
7   ~  You may obtain 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,
13   ~  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14   ~  See the License for the specific language governing permissions and
15   ~  limitations under the License.
16   -->
17 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
18   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
19     <modelVersion>4.0.0</modelVersion>
20     <parent>
21         <groupId>org.onap.ccsdk.apps.blueprintsprocessor</groupId>
22         <artifactId>inbounds</artifactId>
23         <version>0.4.0-SNAPSHOT</version>
24     </parent>
25
26     <artifactId>selfservice-api</artifactId>
27     <packaging>jar</packaging>
28     <name>Blueprints Processor Selfservice API</name>
29     <description>Blueprints Processor Selfservice API</description>
30
31     <dependencies>
32         <dependency>
33             <groupId>io.grpc</groupId>
34             <artifactId>grpc-testing</artifactId>
35         </dependency>
36     </dependencies>
37
38     <build>
39         <extensions>
40             <extension>
41                 <groupId>kr.motd.maven</groupId>
42                 <artifactId>os-maven-plugin</artifactId>
43                 <version>1.6.1</version>
44             </extension>
45         </extensions>
46         <plugins>
47             <plugin>
48                 <groupId>org.xolstice.maven.plugins</groupId>
49                 <artifactId>protobuf-maven-plugin</artifactId>
50                 <version>0.6.1</version>
51                 <configuration>
52                     <protocArtifact>
53                         com.google.protobuf:protoc:3.5.1-1:exe:${os.detected.classifier}
54                     </protocArtifact>
55                     <pluginId>grpc-java</pluginId>
56                     <pluginArtifact>
57                         io.grpc:protoc-gen-grpc-java:1.16.1:exe:${os.detected.classifier}
58                     </pluginArtifact>
59                     <protoSourceRoot>./../../../../../components/model-catalog/api-definition</protoSourceRoot>
60                 </configuration>
61                 <executions>
62                     <execution>
63                         <goals>
64                             <goal>compile</goal>
65                             <goal>compile-custom</goal>
66                         </goals>
67                     </execution>
68                 </executions>
69             </plugin>
70         </plugins>
71     </build>
72
73 </project>