From 1aa57d58789b9a73b683bb6abfc8edfb7ce7ee07 Mon Sep 17 00:00:00 2001 From: steneker Date: Tue, 16 Jun 2020 11:23:09 +0000 Subject: [PATCH] 25311: [Build] Upgraded to Gradle 6.5. This includes the following changes: - Upgraded to Gradle 6.5 everywhere, except for the IntelliJ plugin (it uses Gradle 5.6.2 for now due to warnings when using Gradle 6.x) - Adjusted the Jenkins plugin to use Gradle-style dependencies; see https://github.com/jenkinsci/gradle-jpi-plugin/issues/139 - Fixed the Jenkins makefile to run CheckStyle for every build and resolved all existing violations - Fixed repository URLs (Nexus) to use https instead of http Reviewed by @reniers. --- build.gradle | 8 ++++---- settings.gradle | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/build.gradle b/build.gradle index 85c55f5..a63735c 100644 --- a/build.gradle +++ b/build.gradle @@ -11,9 +11,9 @@ intellij { // Specifying these custom repositories enables us to cache them within TIOBE. // If this causes trouble, either make sure you are in the TIOBE network, or // comment out these lines temporarily. - intellijRepo 'http://artifacts.tiobe.com/repository/maven/' - pluginsRepo 'http://artifacts.tiobe.com/repository/maven/' - jreRepo 'http://artifacts.tiobe.com/repository/intellij-jdk/' + intellijRepo 'https://artifacts.tiobe.com/repository/maven/' + pluginsRepo 'https://artifacts.tiobe.com/repository/maven/' + jreRepo 'https://artifacts.tiobe.com/repository/intellij-jdk/' } patchPluginXml { @@ -30,7 +30,7 @@ repositories { // If this causes trouble, either make sure you are in the TIOBE network, or // add the repository mavenCentral(). maven { - url 'http://artifacts.tiobe.com/repository/maven/' + url 'https://artifacts.tiobe.com/repository/maven/' } //mavenCentral() } diff --git a/settings.gradle b/settings.gradle index 8cb13d5..49def55 100644 --- a/settings.gradle +++ b/settings.gradle @@ -4,7 +4,7 @@ pluginManagement { // If this causes trouble, either make sure you are in the TIOBE network, or // comment out these lines temporarily. maven { - url 'http://artifacts.tiobe.com/repository/maven/' + url 'https://artifacts.tiobe.com/repository/maven/' } } }