mirror of
https://github.com/google/flatbuffers.git
synced 2026-06-28 18:50:02 +00:00
Prepare for Java 2.0.1 release
see https://github.com/google/flatbuffers/pull/6658
This commit is contained in:
@@ -6,7 +6,7 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<groupId>com.google.flatbuffers</groupId>
|
<groupId>com.google.flatbuffers</groupId>
|
||||||
<artifactId>flatbuffers-parent</artifactId>
|
<artifactId>flatbuffers-parent</artifactId>
|
||||||
<version>2.0.0</version>
|
<version>2.0.1</version>
|
||||||
</parent>
|
</parent>
|
||||||
<artifactId>flatbuffers-java-grpc</artifactId>
|
<artifactId>flatbuffers-java-grpc</artifactId>
|
||||||
<name>${project.artifactId}</name>
|
<name>${project.artifactId}</name>
|
||||||
|
|||||||
@@ -4,7 +4,7 @@
|
|||||||
<groupId>com.google.flatbuffers</groupId>
|
<groupId>com.google.flatbuffers</groupId>
|
||||||
<artifactId>flatbuffers-parent</artifactId>
|
<artifactId>flatbuffers-parent</artifactId>
|
||||||
<packaging>pom</packaging>
|
<packaging>pom</packaging>
|
||||||
<version>2.0.0</version>
|
<version>2.0.1</version>
|
||||||
<name>flatbuffers-parent</name>
|
<name>flatbuffers-parent</name>
|
||||||
<description>parent pom for flatbuffers java artifacts</description>
|
<description>parent pom for flatbuffers java artifacts</description>
|
||||||
<properties>
|
<properties>
|
||||||
|
|||||||
@@ -4,13 +4,13 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<groupId>com.google.flatbuffers</groupId>
|
<groupId>com.google.flatbuffers</groupId>
|
||||||
<artifactId>flatbuffers-parent</artifactId>
|
<artifactId>flatbuffers-parent</artifactId>
|
||||||
<version>2.0.0</version>
|
<version>2.0.1</version>
|
||||||
</parent>
|
</parent>
|
||||||
<artifactId>grpc-test</artifactId>
|
<artifactId>grpc-test</artifactId>
|
||||||
<description>Example/Test project demonstrating usage of flatbuffers with GRPC-Java instead of protobufs
|
<description>Example/Test project demonstrating usage of flatbuffers with GRPC-Java instead of protobufs
|
||||||
</description>
|
</description>
|
||||||
<properties>
|
<properties>
|
||||||
<gRPC.version>2.0.0</gRPC.version>
|
<gRPC.version>2.0.1</gRPC.version>
|
||||||
</properties>
|
</properties>
|
||||||
<dependencies>
|
<dependencies>
|
||||||
<dependency>
|
<dependency>
|
||||||
|
|||||||
@@ -155,7 +155,7 @@ public class ByteBufferReadWriteBuf implements ReadWriteBuf {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public int writePosition() {
|
public int writePosition() {
|
||||||
return ((Buffer) buffer).position();
|
return buffer.position();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|||||||
2
pom.xml
2
pom.xml
@@ -3,7 +3,7 @@
|
|||||||
<modelVersion>4.0.0</modelVersion>
|
<modelVersion>4.0.0</modelVersion>
|
||||||
<groupId>com.google.flatbuffers</groupId>
|
<groupId>com.google.flatbuffers</groupId>
|
||||||
<artifactId>flatbuffers-java</artifactId>
|
<artifactId>flatbuffers-java</artifactId>
|
||||||
<version>2.0.0</version>
|
<version>2.0.1</version>
|
||||||
<packaging>bundle</packaging>
|
<packaging>bundle</packaging>
|
||||||
<name>FlatBuffers Java API</name>
|
<name>FlatBuffers Java API</name>
|
||||||
<description>
|
<description>
|
||||||
|
|||||||
Reference in New Issue
Block a user