Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
小 白蛋
Intellij Community
Commits
a81754ea
Commit
a81754ea
authored
6 years ago
by
nik
Browse files
Options
Download
Email Patches
Plain Diff
gradle tooling tests: download artifacts via https instead of http (SDP-433, IDEA-207845)
parent
99847c57
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
plugins/gradle/tooling-extension-impl/testData/testScalaModel/build.gradle
+1
-1
...oling-extension-impl/testData/testScalaModel/build.gradle
plugins/gradle/tooling-extension-impl/testSources/org/jetbrains/plugins/gradle/tooling/builder/AbstractModelBuilderTest.java
+4
-4
...gins/gradle/tooling/builder/AbstractModelBuilderTest.java
with
5 additions
and
5 deletions
+5
-5
plugins/gradle/tooling-extension-impl/testData/testScalaModel/build.gradle
+
1
-
1
View file @
a81754ea
...
...
@@ -20,7 +20,7 @@ apply plugin: 'scala'
repositories
{
maven
{
url
'http://maven.labs.intellij.net/repo1'
url
'http
s
://maven.labs.intellij.net/repo1'
}
}
...
...
This diff is collapsed.
Click to expand it.
plugins/gradle/tooling-extension-impl/testSources/org/jetbrains/plugins/gradle/tooling/builder/AbstractModelBuilderTest.java
+
4
-
4
View file @
a81754ea
...
...
@@ -247,11 +247,11 @@ public abstract class AbstractModelBuilderTest {
private
static
final
String
RELEASE_REPOSITORY_ENV
=
"GRADLE_RELEASE_REPOSITORY"
;
private
static
final
String
SNAPSHOT_REPOSITORY_ENV
=
"GRADLE_SNAPSHOT_REPOSITORY"
;
private
static
final
String
INTELLIJ_LABS_GRADLE_RELEASE_MIRROR
=
"http://services.gradle.org-mirror.labs.intellij.net/distributions"
;
"http
s
://services.gradle.org-mirror.labs.intellij.net/distributions"
;
private
static
final
String
INTELLIJ_LABS_GRADLE_SNAPSHOT_MIRROR
=
"http://services.gradle.org-mirror.labs.intellij.net/distributions-snapshots"
;
private
static
final
String
GRADLE_RELEASE_REPO
=
"http://services.gradle.org/distributions"
;
private
static
final
String
GRADLE_SNAPSHOT_REPO
=
"http://services.gradle.org/distributions-snapshots"
;
"http
s
://services.gradle.org-mirror.labs.intellij.net/distributions-snapshots"
;
private
static
final
String
GRADLE_RELEASE_REPO
=
"http
s
://services.gradle.org/distributions"
;
private
static
final
String
GRADLE_SNAPSHOT_REPO
=
"http
s
://services.gradle.org/distributions-snapshots"
;
@NotNull
private
final
String
myReleaseRepoUrl
;
@NotNull
private
final
String
mySnapshotRepoUrl
;
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment