Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 2 additions & 6 deletions sample/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,13 @@ buildscript { // Configuration for building

plugins {
id 'application'
id 'com.google.cloud.artifactregistry.gradle-plugin' version '2.1.5'
}

repositories { // repositories for Jar's you access in your code
maven {
url 'https://oss.sonatype.org/content/repositories/snapshots' // SNAPSHOT repository (if needed)
}
mavenCentral()
maven {
url "artifactregistry://us-maven.pkg.dev/fleetengine-gapic/maven"
}
}

application {
Expand Down Expand Up @@ -49,8 +45,8 @@ dependencies {
implementation 'com.google.api:gax:1.65.1'
implementation 'com.google.api:gax-grpc:1.65.1'

implementation 'com.google.maps:gapic-google-maps-fleetengine-v1-java:1.0.0'
implementation 'com.google.maps:gapic-google-maps-fleetengine-delivery-v1-java:1.0.0'
implementation 'com.google.maps:google-maps-fleetengine:0.1.0'
implementation 'com.google.maps:google-maps-fleetengine-delivery:0.1.0'
implementation project(':fleetengine-auth')

testImplementation 'junit:junit:4.13.1'
Expand Down
Loading