Serkant Uluderya | cbcfaa4 | 2019-10-18 13:25:08 +0300 | [diff] [blame^] | 1 | <!--
|
| 2 | Copyright 2018 the original author or authors.
|
| 3 |
|
| 4 | Licensed under the Apache License, Version 2.0 (the "License");
|
| 5 | you may not use this file except in compliance with the License.
|
| 6 | You may obtain a copy of the License at
|
| 7 |
|
| 8 | http://www.apache.org/licenses/LICENSE-2.0
|
| 9 |
|
| 10 | Unless required by applicable law or agreed to in writing, software
|
| 11 | distributed under the License is distributed on an "AS IS" BASIS,
|
| 12 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
| 13 | See the License for the specific language governing permissions and
|
| 14 | limitations under the License.
|
| 15 |
|
| 16 | pom.xml
|
| 17 |
|
| 18 | This test validates that go proto outputs are committed to git. It does this
|
| 19 | by regenerating them and validating whether git thinks they are the same. If
|
| 20 | they become out of sync, there can be problems for consumers of the protos.
|
| 21 | -->
|
| 22 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
| 23 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
| 24 |
|
| 25 | <modelVersion>4.0.0</modelVersion>
|
| 26 |
|
| 27 |
|
| 28 | <groupId>opencord</groupId>
|
| 29 | <artifactId>voltha-protos</artifactId>
|
| 30 | <version>3.0-SNAPSHOT</version>
|
| 31 |
|
| 32 | <dependencies>
|
| 33 | <!-- https://mvnrepository.com/artifact/com.google.protobuf/protobuf-java -->
|
| 34 | <dependency>
|
| 35 | <groupId>com.google.protobuf</groupId>
|
| 36 | <artifactId>protobuf-java</artifactId>
|
| 37 | <version>3.10.0</version>
|
| 38 | </dependency>
|
| 39 | <dependency>
|
| 40 | <groupId>com.google.api.grpc</groupId>
|
| 41 | <artifactId>googleapis-common-protos</artifactId>
|
| 42 | <version>0.0.3</version>
|
| 43 | </dependency>
|
| 44 | </dependencies>
|
| 45 |
|
| 46 | </project>
|