1<?xml version="1.0" encoding="UTF-8"?> 2<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> 3 <modelVersion>4.0.0</modelVersion> 4 <parent> 5 <groupId>com.google</groupId> 6 <artifactId>google</artifactId> 7 <version>5</version> 8 </parent> 9 <groupId>com.google.protobuf</groupId> 10 <artifactId>protoc</artifactId> 11 <version>4.29.4</version> 12 <packaging>pom</packaging> 13 <name>Protobuf Compiler</name> 14 <description> 15 Protobuf Compiler (protoc) is a compiler for .proto files. It generates 16 language-specific code for Protobuf messages and RPC interfaces. 17 </description> 18 <inceptionYear>2008</inceptionYear> 19 <url>https://developers.google.com/protocol-buffers/</url> 20 <licenses> 21 <license> 22 <name>BSD-3-Clause</name> 23 <url>https://opensource.org/licenses/BSD-3-Clause</url> 24 <distribution>repo</distribution> 25 </license> 26 </licenses> 27 <scm> 28 <url>https://github.com/protocolbuffers/protobuf</url> 29 <connection> 30 scm:git:https://github.com/protocolbuffers/protobuf.git 31 </connection> 32 </scm> 33</project> 34