File tree Expand file tree Collapse file tree 11 files changed +41
-27
lines changed
demos/grpc-java-contrib-demo Expand file tree Collapse file tree 11 files changed +41
-27
lines changed Original file line number Diff line number Diff line change
1
+ # Steps
2
+ 1 . Setup a pgp key
3
+ 1 . [ Set up settings.xml] ( http://central.sonatype.org/pages/apache-maven.html )
4
+ 1 . ** Make sure pom version is right (no -SNAPSHOT)**
5
+ 1 . Tag the release and push to github
6
+ 1 . ` mvn clean deploy -Dmaven.test.skip -P public-release `
7
+ 1 . [ Release the deployment from Nexus] ( http://central.sonatype.org/pages/releasing-the-deployment.html )
8
+ 1 . ** Increment the pom version with -SNAPSHOT**
9
+
10
+ # Known issues
11
+ * Inappropriate ioctl for device
12
+ ``` bash
13
+ > GPG_TTY=$( tty)
14
+ > export GPG_TTY
15
+ ```
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 5
5
<parent >
6
6
<artifactId >grpc-contrib-parent</artifactId >
7
7
<groupId >com.salesforce.servicelibs</groupId >
8
- <version >0.6.2-SNAPSHOT </version >
8
+ <version >0.7.0 </version >
9
9
<relativePath >../../pom.xml</relativePath >
10
10
</parent >
11
11
<modelVersion >4.0.0</modelVersion >
Original file line number Diff line number Diff line change 5
5
<parent >
6
6
<artifactId >grpc-java-contrib-demo</artifactId >
7
7
<groupId >com.salesforce.servicelibs</groupId >
8
- <version >0.6.2-SNAPSHOT </version >
8
+ <version >0.7.0 </version >
9
9
</parent >
10
10
<modelVersion >4.0.0</modelVersion >
11
11
Original file line number Diff line number Diff line change 5
5
<parent >
6
6
<artifactId >grpc-java-contrib-demo</artifactId >
7
7
<groupId >com.salesforce.servicelibs</groupId >
8
- <version >0.6.2-SNAPSHOT </version >
8
+ <version >0.7.0 </version >
9
9
</parent >
10
10
<modelVersion >4.0.0</modelVersion >
11
11
Original file line number Diff line number Diff line change 1
1
[ ![ Javadocs] ( https://javadoc.io/badge/com.salesforce.servicelibs/grpc-contrib.svg )] ( https://javadoc.io/doc/com.salesforce.servicelibs/grpc-contrib )
2
2
[ ![ Maven Central] ( https://maven-badges.herokuapp.com/maven-central/com.salesforce.servicelibs/grpc-contrib/badge.svg )] ( https://maven-badges.herokuapp.com/maven-central/com.salesforce.servicelibs/grpc-contrib )
3
3
4
- In this module
4
+ Classes
5
5
==============
6
- * * FutureChain.java* - A fluent interface for chaining ` ListenableFuture ` operations together.
7
- * * MoreDurations.java* - JDK8 adapters for the protobuf ` Duration ` type.
8
- * * MoreFutures.java* - JDK8 adapters for ` ListenableFuture ` .
9
- * * MoreTimestamps.java* - JDK8 adapters for the protobuf ` Timestamp ` type.
10
- * * Servers.java* - Additional helper methods for working with ` Server ` instances.
6
+ * * FallbackResolver* - Allows the use of multiple gRPC ` NameResolver ` s.
7
+ * * FutureChain* - A fluent interface for chaining ` ListenableFuture ` operations together.
8
+ * * LambdaStreamObserver* - Create gRPC ` StreamObserver ` s using JDK8 lambda syntax for brevity.
9
+ * * MoreDurations* - JDK8 adapters for the protobuf ` Duration ` type.
10
+ * * MoreFutures* - JDK8 adapters for ` ListenableFuture ` .
11
+ * * MoreMetadata* - JSON and Protobuf marshallers for HTTP/2 request headers.
12
+ * * MoreTimestamps* - JDK8 adapters for the protobuf ` Timestamp ` type.
13
+ * * Servers* - Additional helper methods for working with ` Server ` instances.
14
+ * * StaticResolver* - a gRPC ` NameResolver ` that always resolves to the same address.
15
+ * * Statuses* - Utility methods for working with gRPC ` Status ` objects.
16
+
17
+ Subpackages
18
+ ===============
19
+ * * context* - Implements an ambient context that is transparently passed from service to service.
20
+ * * instancemode* - Adds per-call and per-session service instantiation modes to gRPC.
21
+ * * interceptor* - Useful client and server interceptor implementations.
22
+ * * session* - Adds client session tracking support to gRPC.
Original file line number Diff line number Diff line change 12
12
<parent >
13
13
<artifactId >grpc-contrib-parent</artifactId >
14
14
<groupId >com.salesforce.servicelibs</groupId >
15
- <version >0.6.2-SNAPSHOT </version >
15
+ <version >0.7.0 </version >
16
16
</parent >
17
17
<modelVersion >4.0.0</modelVersion >
18
18
Original file line number Diff line number Diff line change 12
12
<parent >
13
13
<artifactId >grpc-contrib-parent</artifactId >
14
14
<groupId >com.salesforce.servicelibs</groupId >
15
- <version >0.6.2-SNAPSHOT </version >
15
+ <version >0.7.0 </version >
16
16
</parent >
17
17
<modelVersion >4.0.0</modelVersion >
18
18
Original file line number Diff line number Diff line change 12
12
<parent >
13
13
<artifactId >grpc-contrib-parent</artifactId >
14
14
<groupId >com.salesforce.servicelibs</groupId >
15
- <version >0.6.2-SNAPSHOT </version >
15
+ <version >0.7.0 </version >
16
16
</parent >
17
17
<modelVersion >4.0.0</modelVersion >
18
18
Original file line number Diff line number Diff line change 12
12
<parent >
13
13
<artifactId >grpc-contrib-parent</artifactId >
14
14
<groupId >com.salesforce.servicelibs</groupId >
15
- <version >0.6.2-SNAPSHOT </version >
15
+ <version >0.7.0 </version >
16
16
</parent >
17
17
<modelVersion >4.0.0</modelVersion >
18
18
Original file line number Diff line number Diff line change 14
14
<groupId >com.salesforce.servicelibs</groupId >
15
15
<artifactId >grpc-contrib-parent</artifactId >
16
16
<packaging >pom</packaging >
17
- <version >0.6.2-SNAPSHOT </version >
17
+ <version >0.7.0 </version >
18
18
19
19
<name >grpc-java-contrib</name >
20
20
<description >Useful extensions for the grpc-java library.</description >
You can’t perform that action at this time.
0 commit comments