Skip to content

Commit

Permalink
samples: fix sample dependencies (#247)
Browse files Browse the repository at this point in the history
  • Loading branch information
chingor13 authored and anguillanneuf committed Dec 5, 2022
1 parent 913da60 commit 98d524e
Showing 1 changed file with 27 additions and 3 deletions.
30 changes: 27 additions & 3 deletions asset/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>


<!-- [START cloudasset_install_with_bom] -->
<dependencyManagement>
<dependencies>
Expand All @@ -42,8 +41,31 @@
<groupId>com.google.cloud</groupId>
<artifactId>google-cloud-asset</artifactId>
</dependency>
<!-- [END cloudasset_install_with_bom] -->

<!-- [START_EXCLUDE] -->
<dependency>
<groupId>com.google.cloud</groupId>
<artifactId>google-cloud-core</artifactId>
</dependency>
<dependency>
<groupId>com.google.cloud</groupId>
<artifactId>google-cloud-storage</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.google.cloud</groupId>
<artifactId>google-cloud-bigquery</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.google.cloud</groupId>
<artifactId>google-cloud-pubsub</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.google.cloud</groupId>
<artifactId>google-cloud-resourcemanager</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
Expand All @@ -56,5 +78,7 @@
<version>1.0.1</version>
<scope>test</scope>
</dependency>
<!-- [END_EXCLUDE] -->
</dependencies>
<!-- [END cloudasset_install_with_bom] -->
</project>

0 comments on commit 98d524e

Please sign in to comment.