blob: 8af1157e987a2e1123f2b1094907d3150fd853cd [file] [log] [blame]
David K. Bainbridgec4bf5382021-04-08 16:06:54 +00001<!--
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 <groupId>opencord</groupId>
27 <artifactId>voltha-protos</artifactId>
28 <version>3.0-SNAPSHOT</version>
29
30 <properties>
31 <maven.compiler.source>1.8</maven.compiler.source>
32 <maven.compiler.target>1.8</maven.compiler.target>
33 <encoding>UTF-8</encoding>
34 </properties>
35
36<dependencies>
37<!-- https://mvnrepository.com/artifact/com.google.protobuf/protobuf-java -->
38 <dependency>
39 <groupId>com.google.protobuf</groupId>
40 <artifactId>protobuf-java</artifactId>
41 <version>3.10.0</version>
42 </dependency>
43 <dependency>
44 <groupId>com.google.api.grpc</groupId>
45 <artifactId>googleapis-common-protos</artifactId>
46 <version>0.0.3</version>
47 </dependency>
48</dependencies>
49
50</project>