blob: 13724aa770b94a4285848c52b766f08e6ef9a0e3 [file] [log] [blame]
Aharoni, Pavel (pa0916)ca3cb012018-10-22 15:29:57 +03001<?xml version="1.0" encoding="UTF-8"?>
2<!--/*-
3 * ============LICENSE_START=======================================================
4 * OSAM Core
5 * ================================================================================
6 * Copyright (C) 2018 Netsia
7 * ================================================================================
8 * Licensed under the Apache License, Version 2.0 (the "License");
9 * you may not use this file except in compliance with the License.
10 * You may obtain a copy of the License at
11 *
12 * http://www.apache.org/licenses/LICENSE-2.0
13 *
14 * Unless required by applicable law or agreed to in writing, software
15 * distributed under the License is distributed on an "AS IS" BASIS,
16 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17 * See the License for the specific language governing permissions and
18 * limitations under the License.
19 * ============LICENSE_END=========================================================
20 */-->
21
22<project xmlns="http://maven.apache.org/POM/4.0.0"
23 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
24 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
25 <parent>
26 <artifactId>osam-core</artifactId>
27 <groupId>org.onap.osam</groupId>
28 <version>0.0.1-SNAPSHOT</version>
29 </parent>
30 <modelVersion>4.0.0</modelVersion>
31
32 <artifactId>external</artifactId>
33
34 <repositories>
35 <repository>
36 <id>jcenter</id>
37 <url>https://jcenter.bintray.com/</url>
38 </repository>
39 </repositories>
40 <dependencies>
41 <dependency>
42 <groupId>org.springframework</groupId>
43 <artifactId>spring-webflux</artifactId>
44 </dependency>
45 <dependency>
46 <groupId>org.springframework.boot</groupId>
47 <artifactId>spring-boot-starter-reactor-netty</artifactId>
48 </dependency>
49 <dependency>
50 <groupId>org.lognet</groupId>
51 <artifactId>grpc-spring-boot-starter</artifactId>
52 <version>${grpc-spring-boot-starter.version}</version>
53 </dependency>
54 <dependency>
55 <groupId>org.onap.osam</groupId>
56 <artifactId>api</artifactId>
57 <version>${project.version}</version>
58 </dependency>
Aharoni, Pavel (pa0916)ca3cb012018-10-22 15:29:57 +030059 </dependencies>
60 <pluginRepositories>
61 <pluginRepository>
62 <releases>
63 <updatePolicy>never</updatePolicy>
64 </releases>
65 <snapshots>
66 <enabled>false</enabled>
67 </snapshots>
68 <id>central</id>
69 <name>Central Repository</name>
70 <url>https://repo.maven.apache.org/maven2</url>
71 </pluginRepository>
72 <pluginRepository>
73 <id>protoc-plugin</id>
74 <url>https://dl.bintray.com/sergei-ivanov/maven/</url>
75 </pluginRepository>
76 </pluginRepositories>
77
78 <build>
79 <extensions>
80 <extension>
81 <groupId>kr.motd.maven</groupId>
82 <artifactId>os-maven-plugin</artifactId>
83 <version>${os-maven-plugin.version}</version>
84 </extension>
85 </extensions>
86 <plugins>
87 <!-- protobuf-maven-plugin -->
88 <plugin>
89 <groupId>org.xolstice.maven.plugins</groupId>
90 <artifactId>protobuf-maven-plugin</artifactId>
91 <version>${protobuf-maven-plugin.version}</version>
92 <configuration>
93 <protocArtifact>com.google.protobuf:protoc:3.5.1-1:exe:${os.detected.classifier}</protocArtifact>
94 <pluginId>grpc-java</pluginId>
95 <pluginArtifact>io.grpc:protoc-gen-grpc-java:1.11.0:exe:${os.detected.classifier}</pluginArtifact>
96 </configuration>
97 <executions>
98 <execution>
99 <goals>
100 <goal>compile</goal>
101 <goal>compile-custom</goal>
102 </goals>
103 </execution>
104 </executions>
105 </plugin>
106 </plugins>
107 </build>
108</project>