You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Sep 16, 2023. It is now read-only.
@@ -43,7 +43,7 @@ See the [Authentication][authentication] section in the base directory's README.
43
43
### Prerequisites
44
44
45
45
You will need a [Google Cloud Platform Console][developer-console] project with the Binary Authorization [API enabled][enable-api].
46
-
You will need to [enable billing][enable-billing] to use Binary Authorization.
46
+
You will need to [enable billing][enable-billing] to use Google Binary Authorization.
47
47
[Follow these instructions][create-project] to get your project set up. You will also need to set up the local development environment by
48
48
[installing the Google Cloud SDK][cloud-sdk] and running the following commands in command line:
49
49
`gcloud auth login` and `gcloud config set project [YOUR PROJECT ID]`.
@@ -56,12 +56,16 @@ to add `google-cloud-binary-authorization` as a dependency in your code.
56
56
## About Binary Authorization
57
57
58
58
59
-
[Binary Authorization][product-docs] is a service on Google Cloud that provides centralized software supply-chain security for applications that run on Google Kubernetes Engine (GKE) and Anthos clusters on VMware.
60
-
59
+
[Binary Authorization][product-docs] is a service on Google Cloud that provides centralized software supply-chain security for applications that run on Google Kubernetes Engine (GKE) and Anthos clusters on VMware
61
60
62
61
See the [Binary Authorization client library docs][javadocs] to learn how to
63
62
use this Binary Authorization Client Library.
64
63
64
+
65
+
66
+
67
+
68
+
65
69
## Troubleshooting
66
70
67
71
To get help, follow the instructions in the [shared Troubleshooting document][troubleshooting].
@@ -70,10 +74,50 @@ To get help, follow the instructions in the [shared Troubleshooting document][tr
70
74
71
75
Binary Authorization uses gRPC for the transport layer.
72
76
73
-
## Java Versions
77
+
## Supported Java Versions
74
78
75
79
Java 7 or above is required for using this client.
76
80
81
+
Google's Java client libraries,
82
+
[Google Cloud Client Libraries][cloudlibs]
83
+
and
84
+
[Google Cloud API Libraries][apilibs],
85
+
follow the
86
+
[Oracle Java SE support roadmap][oracle]
87
+
(see the Oracle Java SE Product Releases section).
88
+
89
+
### For new development
90
+
91
+
In general, new feature development occurs with support for the lowest Java
92
+
LTS version covered by Oracle's Premier Support (which typically lasts 5 years
93
+
from initial General Availability). If the minimum required JVM for a given
94
+
library is changed, it is accompanied by a [semver][semver] major release.
95
+
96
+
Java 11 and (in September 2021) Java 17 are the best choices for new
97
+
development.
98
+
99
+
### Keeping production systems current
100
+
101
+
Google tests its client libraries with all current LTS versions covered by
102
+
Oracle's Extended Support (which typically lasts 8 years from initial
103
+
General Availability).
104
+
105
+
#### Legacy support
106
+
107
+
Google's client libraries support legacy versions of Java runtimes with long
108
+
term stable libraries that don't receive feature updates on a best efforts basis
109
+
as it may not be possible to backport all patches.
110
+
111
+
Google provides updates on a best efforts basis to apps that continue to use
112
+
Java 7, though apps might need to upgrade to current versions of the library
113
+
that supports their JVM.
114
+
115
+
#### Where to find specific information
116
+
117
+
The latest versions and the supported Java versions are identified on
118
+
the individual GitHub repository `github.com/GoogleAPIs/java-SERVICENAME`
0 commit comments