Yong Tang 85fcfd9191 Update protobuf-java to 3.9.2
This PR updates protobuf-java to 3.9.2, to match C++ version
in tensorflow/workspace.bzl (3.9.2), and to fix the issue raised
in 39381.

Signed-off-by: Yong Tang <yong.tang.github@outlook.com>
2020-05-10 18:52:18 +00:00

63 lines
1.8 KiB
XML

<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<description>Java API for TensorFlow protocol buffers.</description>
<parent>
<groupId>org.tensorflow</groupId>
<artifactId>parentpom</artifactId>
<version>1.15.0</version>
<relativePath>../</relativePath>
</parent>
<artifactId>proto</artifactId>
<packaging>jar</packaging>
<dependencies>
<dependency>
<groupId>com.google.protobuf</groupId>
<artifactId>protobuf-java</artifactId>
<version>3.9.2</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.6.1</version>
<configuration>
<source>1.7</source>
<target>1.7</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.2.1</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.9.1</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>