Aharoni, Pavel (pa0916) | ca3cb01 | 2018-10-22 15:29:57 +0300 | [diff] [blame^] | 1 | <?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>
|
| 59 | <dependency>
|
| 60 | <groupId>com.google.guava</groupId>
|
| 61 | <artifactId>guava</artifactId>
|
| 62 | <version>${guava.version}</version>
|
| 63 | </dependency>
|
| 64 | </dependencies>
|
| 65 | <pluginRepositories>
|
| 66 | <pluginRepository>
|
| 67 | <releases>
|
| 68 | <updatePolicy>never</updatePolicy>
|
| 69 | </releases>
|
| 70 | <snapshots>
|
| 71 | <enabled>false</enabled>
|
| 72 | </snapshots>
|
| 73 | <id>central</id>
|
| 74 | <name>Central Repository</name>
|
| 75 | <url>https://repo.maven.apache.org/maven2</url>
|
| 76 | </pluginRepository>
|
| 77 | <pluginRepository>
|
| 78 | <id>protoc-plugin</id>
|
| 79 | <url>https://dl.bintray.com/sergei-ivanov/maven/</url>
|
| 80 | </pluginRepository>
|
| 81 | </pluginRepositories>
|
| 82 |
|
| 83 | <build>
|
| 84 | <extensions>
|
| 85 | <extension>
|
| 86 | <groupId>kr.motd.maven</groupId>
|
| 87 | <artifactId>os-maven-plugin</artifactId>
|
| 88 | <version>${os-maven-plugin.version}</version>
|
| 89 | </extension>
|
| 90 | </extensions>
|
| 91 | <plugins>
|
| 92 | <!-- protobuf-maven-plugin -->
|
| 93 | <plugin>
|
| 94 | <groupId>org.xolstice.maven.plugins</groupId>
|
| 95 | <artifactId>protobuf-maven-plugin</artifactId>
|
| 96 | <version>${protobuf-maven-plugin.version}</version>
|
| 97 | <configuration>
|
| 98 | <protocArtifact>com.google.protobuf:protoc:3.5.1-1:exe:${os.detected.classifier}</protocArtifact>
|
| 99 | <pluginId>grpc-java</pluginId>
|
| 100 | <pluginArtifact>io.grpc:protoc-gen-grpc-java:1.11.0:exe:${os.detected.classifier}</pluginArtifact>
|
| 101 | </configuration>
|
| 102 | <executions>
|
| 103 | <execution>
|
| 104 | <goals>
|
| 105 | <goal>compile</goal>
|
| 106 | <goal>compile-custom</goal>
|
| 107 | </goals>
|
| 108 | </execution>
|
| 109 | </executions>
|
| 110 | </plugin>
|
| 111 | </plugins>
|
| 112 | </build>
|
| 113 | </project> |