Skip to content

Commit 54f750d

Browse files
feat: [videostitcher] Add support for Media CDN (#8690)
* feat: Add support for Media CDN PiperOrigin-RevId: 483999352 Source-Link: googleapis/googleapis@d0a9cd5 Source-Link: https://github.com/googleapis/googleapis-gen/commit/b40f231195019a20fba164e6b9fdb344e6283a13 Copy-Tag: eyJwIjoiamF2YS12aWRlby1zdGl0Y2hlci8uT3dsQm90LnlhbWwiLCJoIjoiYjQwZjIzMTE5NTAxOWEyMGZiYTE2NGU2YjlmZGIzNDRlNjI4M2ExMyJ9 * 🦉 Updates from OwlBot post-processor See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
1 parent 7a0fa4d commit 54f750d

File tree

9 files changed

+1170
-16
lines changed

9 files changed

+1170
-16
lines changed

java-video-stitcher/.gitignore

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# Maven
2+
target/
3+
4+
# Eclipse
5+
.classpath
6+
.project
7+
.settings
8+
9+
# Intellij
10+
*.iml
11+
.idea/
12+
13+
# python utilities
14+
*.pyc
15+
__pycache__
16+
17+
.flattened-pom.xml

java-video-stitcher/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,20 +22,20 @@ If you are using Maven, add this to your pom.xml file:
2222
<dependency>
2323
<groupId>com.google.cloud</groupId>
2424
<artifactId>google-cloud-video-stitcher</artifactId>
25-
<version>0.3.6</version>
25+
<version>0.5.0</version>
2626
</dependency>
2727
```
2828

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

3131
```Groovy
32-
implementation 'com.google.cloud:google-cloud-video-stitcher:0.3.6'
32+
implementation 'com.google.cloud:google-cloud-video-stitcher:0.5.0'
3333
```
3434

3535
If you are using SBT, add this to your dependencies:
3636

3737
```Scala
38-
libraryDependencies += "com.google.cloud" % "google-cloud-video-stitcher" % "0.3.6"
38+
libraryDependencies += "com.google.cloud" % "google-cloud-video-stitcher" % "0.5.0"
3939
```
4040

4141
## Authentication

java-video-stitcher/pom.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,4 +50,5 @@
5050
<module>proto-google-cloud-video-stitcher-v1</module>
5151
<module>google-cloud-video-stitcher-bom</module>
5252
</modules>
53-
</project>
53+
54+
</project>

0 commit comments

Comments
 (0)