parent
4644980d81
commit
89a9f459e9
9 changed files with 129 additions and 8 deletions
@ -0,0 +1,18 @@ |
||||
<?xml version="1.0" encoding="UTF-8"?> |
||||
<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"> |
||||
<modelVersion>4.0.0</modelVersion> |
||||
<parent> |
||||
<groupId>{groupId}</groupId> |
||||
<artifactId>protobuf-parent</artifactId> |
||||
<version>{version}</version> |
||||
</parent> |
||||
|
||||
<artifactId>{artifactId}</artifactId> |
||||
<packaging>{type}</packaging> |
||||
|
||||
<name>Protocol Buffers [Core]</name> |
||||
<description> |
||||
Core Protocol Buffers library. Protocol Buffers are a way of encoding structured data in an |
||||
efficient yet extensible format. |
||||
</description> |
||||
</project> |
@ -0,0 +1,19 @@ |
||||
<?xml version="1.0" encoding="UTF-8"?> |
||||
<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/xsd/maven-4.0.0.xsd"> |
||||
<modelVersion>4.0.0</modelVersion> |
||||
<parent> |
||||
<groupId>{groupId}</groupId> |
||||
<artifactId>protobuf-parent</artifactId> |
||||
<version>{version}</version> |
||||
</parent> |
||||
|
||||
<artifactId>{artifactId}</artifactId> |
||||
<packaging>{type}</packaging> |
||||
|
||||
<name>Protocol Buffers [Lite]</name> |
||||
<description> |
||||
Lite version of Protocol Buffers library. This version is optimized for code size, but does |
||||
not guarantee API/ABI stability. |
||||
</description> |
||||
|
||||
</project> |
@ -0,0 +1,18 @@ |
||||
<?xml version="1.0" encoding="UTF-8"?> |
||||
<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"> |
||||
<modelVersion>4.0.0</modelVersion> |
||||
<parent> |
||||
<groupId>{groupId}</groupId> |
||||
<artifactId>protobuf-parent</artifactId> |
||||
<version>{version}</version> |
||||
</parent> |
||||
|
||||
<artifactId>{artifactId}</artifactId> |
||||
<packaging>{type}</packaging> |
||||
|
||||
<name>Protocol Buffers [Util]</name> |
||||
<description>Utilities for Protocol Buffers</description> |
||||
|
||||
{dependencies} |
||||
|
||||
</project> |
@ -0,0 +1 @@ |
||||
VERSION = '3.17.3' |
Loading…
Reference in new issue