Skip to content

Commit 99e34e7

Browse files
Use non-proxying repositories (#144)
1 parent d23bd4a commit 99e34e7

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

standalone/settings.gradle

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
buildscript {
22
repositories {
3-
mavenLocal()
3+
mavenCentral()
4+
gradlePluginPortal()
45
// These repositories contain the LabKey gradle plugin
56
maven {
6-
url "${artifactory_contextUrl}/plugins-release"
7+
url "${artifactory_contextUrl}/plugins-release-no-proxy"
78
}
89
maven {
910
url "${artifactory_contextUrl}/plugins-snapshot-local"
@@ -31,11 +32,11 @@ gradle.beforeProject { project ->
3132
mavenCentral()
3233
maven {
3334
// Use this repository when relying on release versions of the LabKey artifacts and their external dependencies
34-
url "${project.artifactory_contextUrl}/libs-release"
35+
url "${project.artifactory_contextUrl}/libs-release-no-proxy"
3536
}
3637
maven {
3738
// Use this repository when relying on snapshot versions of LabKey artifacts
38-
url "${project.artifactory_contextUrl}/libs-snapshot"
39+
url "${project.artifactory_contextUrl}/libs-snapshot-no-proxy"
3940
}
4041
}
4142
}

0 commit comments

Comments
 (0)