Skip to content
This repository has been archived by the owner on Sep 16, 2023. It is now read-only.

feat: binaryauthorization v1 public protos #90

Merged
merged 4 commits into from Oct 21, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Expand Up @@ -22,20 +22,20 @@ If you are using Maven, add this to your pom.xml file:
<dependency>
<groupId>com.google.cloud</groupId>
<artifactId>google-cloud-binary-authorization</artifactId>
<version>0.3.1</version>
<version>0.3.3</version>
</dependency>
```

If you are using Gradle without BOM, add this to your dependencies

```Groovy
implementation 'com.google.cloud:google-cloud-binary-authorization:0.3.1'
implementation 'com.google.cloud:google-cloud-binary-authorization:0.3.3'
```

If you are using SBT, add this to your dependencies

```Scala
libraryDependencies += "com.google.cloud" % "google-cloud-binary-authorization" % "0.3.1"
libraryDependencies += "com.google.cloud" % "google-cloud-binary-authorization" % "0.3.3"
```

## Authentication
Expand Down
10 changes: 10 additions & 0 deletions google-cloud-binary-authorization-bom/pom.xml
Expand Up @@ -63,11 +63,21 @@
<artifactId>grpc-google-cloud-binary-authorization-v1beta1</artifactId>
<version>0.3.4-SNAPSHOT</version><!-- {x-version-update:grpc-google-cloud-binary-authorization-v1beta1:current} -->
</dependency>
<dependency>
<groupId>com.google.api.grpc</groupId>
<artifactId>grpc-google-cloud-binary-authorization-v1</artifactId>
<version>0.3.4-SNAPSHOT</version><!-- {x-version-update:grpc-google-cloud-binary-authorization-v1:current} -->
</dependency>
<dependency>
<groupId>com.google.api.grpc</groupId>
<artifactId>proto-google-cloud-binary-authorization-v1beta1</artifactId>
<version>0.3.4-SNAPSHOT</version><!-- {x-version-update:proto-google-cloud-binary-authorization-v1beta1:current} -->
</dependency>
<dependency>
<groupId>com.google.api.grpc</groupId>
<artifactId>proto-google-cloud-binary-authorization-v1</artifactId>
<version>0.3.4-SNAPSHOT</version><!-- {x-version-update:proto-google-cloud-binary-authorization-v1:current} -->
</dependency>
</dependencies>
</dependencyManagement>

Expand Down
14 changes: 14 additions & 0 deletions google-cloud-binary-authorization/pom.xml
Expand Up @@ -42,6 +42,10 @@
<artifactId>proto-google-common-protos</artifactId>
</dependency>

<dependency>
<groupId>com.google.api.grpc</groupId>
<artifactId>proto-google-cloud-binary-authorization-v1</artifactId>
</dependency>
<dependency>
<groupId>com.google.api.grpc</groupId>
<artifactId>proto-google-cloud-binary-authorization-v1beta1</artifactId>
Expand All @@ -63,6 +67,11 @@
<artifactId>threetenbp</artifactId>
</dependency>

<dependency>
<groupId>io.grafeas</groupId>
<artifactId>grafeas</artifactId>
</dependency>

<!-- Test dependencies -->
<dependency>
<groupId>junit</groupId>
Expand All @@ -76,6 +85,11 @@
<artifactId>grpc-google-cloud-binary-authorization-v1beta1</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.google.api.grpc</groupId>
<artifactId>grpc-google-cloud-binary-authorization-v1</artifactId>
<scope>test</scope>
</dependency>
<!-- Need testing utility classes for generated gRPC clients tests -->
<dependency>
<groupId>com.google.api</groupId>
Expand Down