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>{groupId}</groupId> 6 <artifactId>protobuf-parent</artifactId> 7 <version>{version}</version> 8 </parent> 9 10 <artifactId>{artifactId}</artifactId> 11 <packaging>{type}</packaging> 12 13 <name>Protocol Buffers [Kotlin-Lite]</name> 14 <description> 15 Kotlin lite Protocol Buffers library. Protocol Buffers are a way of encoding structured data in an 16 efficient yet extensible format. 17 </description> 18 <dependencies> 19 <dependency> 20 <groupId>{groupId}</groupId> 21 <artifactId>protobuf-javalite</artifactId> 22 <version>{version}</version> 23 </dependency> 24 <dependency> 25 <groupId>org.jetbrains.kotlin</groupId> 26 <artifactId>kotlin-stdlib</artifactId> 27 <version>${kotlin.version}</version> 28 </dependency> 29 {dependencies} 30 </dependencies> 31 32 <properties> 33 <kotlin.version>1.6.0</kotlin.version> 34 </properties> 35</project> 36