Skip to content

Commit

Permalink
update build configuration
Browse files Browse the repository at this point in the history
change base url of gradle distribution to https
  • Loading branch information
m-raab committed Nov 10, 2019
1 parent 4ddd4f3 commit 8974f3a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
language: java
sudo: false
jdk:
- oraclejdk7
- openjdk8
before_cache:
- rm -f $HOME/.gradle/caches/modules-2/modules-2.lock
cache:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ zipStorePath=wrapper/dists
# Use for corporate setup
# distributionUrl=$DistributionURL
# Use this distribution for initial setup step
distributionUrl=http\\://services.gradle.org/distributions/gradle-2.11-bin.zip
distributionUrl=https\\://services.gradle.org/distributions/gradle-2.11-bin.zip
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ publishing {
class DownloadGradle extends DefaultTask {
@Input String gradleVersion
@Input File destinationDir
@Input String gradleDownloadBase = "http://services.gradle.org/distributions"
@Input String gradleDownloadBase = "https://services.gradle.org/distributions"
@TaskAction doDownloadGradle() {
destinationFile.withOutputStream { it << new URL(downloadUrl).newInputStream() }
Expand Down

0 comments on commit 8974f3a

Please sign in to comment.