2019-07-29 23:42:16 +08:00
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
2019-07-31 00:31:31 +08:00
|
|
|
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>com.windchat.im</groupId>
|
|
|
|
<artifactId>windchat</artifactId>
|
|
|
|
<version>0.0.1</version>
|
|
|
|
</parent>
|
2019-08-01 23:14:59 +08:00
|
|
|
<groupId>com.windchat.proto</groupId>
|
|
|
|
<artifactId>windchat-protobuf</artifactId>
|
2019-07-31 00:31:31 +08:00
|
|
|
<version>0.0.1-RELEASE</version>
|
2019-07-29 23:42:16 +08:00
|
|
|
|
2019-07-31 00:31:31 +08:00
|
|
|
<properties>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
<protobuf.version>3.4.0</protobuf.version>
|
2019-07-29 23:42:16 +08:00
|
|
|
|
2019-07-31 00:31:31 +08:00
|
|
|
<maven.compiler.source>1.8</maven.compiler.source>
|
|
|
|
<maven.compiler.target>1.8</maven.compiler.target>
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.protobuf</groupId>
|
|
|
|
<artifactId>protobuf-java</artifactId>
|
|
|
|
<version>${protobuf.version}</version>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
2019-07-29 23:42:16 +08:00
|
|
|
|
|
|
|
</project>
|