Skip to content

Commit 2077834

Browse files
authored
DDO-4131 read from google artifact registry (#1021)
1 parent 1c3c424 commit 2077834

6 files changed

Lines changed: 8 additions & 8 deletions

File tree

.github/dependabot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ version: 2
22
registries:
33
broad-artifactory:
44
type: maven-repository
5-
url: https://broadinstitute.jfrog.io/artifactory/libs-release
5+
url: https://us-central1-maven.pkg.dev/dsp-artifact-registry/libs-release/
66
updates:
77
- package-ecosystem: "gradle"
88
registries:

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -268,7 +268,7 @@ following to your `build.gradle` file:
268268
```
269269
repositories {
270270
maven {
271-
url "https://broadinstitute.jfrog.io/broadinstitute/libs-snapshot-local/"
271+
url "https://us-central1-maven.pkg.dev/dsp-artifact-registry/libs-snapshot/"
272272
}
273273
}
274274

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ plugins {
1414
}
1515

1616
repositories {
17-
maven { url 'https://broadinstitute.jfrog.io/artifactory/maven-central' }
17+
maven { url 'https://us-central1-maven.pkg.dev/dsp-artifact-registry/maven-central/' }
1818
mavenCentral()
1919
}
2020

client/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ plugins {
99
}
1010

1111
repositories {
12-
maven { url 'https://broadinstitute.jfrog.io/artifactory/maven-central' }
12+
maven { url 'https://us-central1-maven.pkg.dev/dsp-artifact-registry/maven-central/' }
1313
mavenCentral()
1414
}
1515

service/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@ springBoot {
1818
}
1919

2020
repositories {
21-
maven { url 'https://broadinstitute.jfrog.io/artifactory/maven-central' }
21+
maven { url 'https://us-central1-maven.pkg.dev/dsp-artifact-registry/maven-central/' }
2222
mavenCentral()
23-
maven { url 'https://broadinstitute.jfrog.io/artifactory/libs-snapshot' }
24-
maven { url 'https://broadinstitute.jfrog.io/artifactory/libs-release' }
23+
maven { url 'https://us-central1-maven.pkg.dev/dsp-artifact-registry/libs-snapshot/' }
24+
maven { url 'https://us-central1-maven.pkg.dev/dsp-artifact-registry/libs-release/' }
2525
}
2626

2727
gitProperties {

settings.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
pluginManagement {
22
repositories {
33
maven {
4-
url 'https://broadinstitute.jfrog.io/artifactory/plugins-snapshot'
4+
url 'https://us-central1-maven.pkg.dev/dsp-artifact-registry/libs-snapshot/'
55
}
66
gradlePluginPortal()
77
}

0 commit comments

Comments
 (0)