Skip to content

Commit

Permalink
25311: [Build] Upgraded to Gradle 6.5.
Browse files Browse the repository at this point in the history
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 jenkinsci/gradle-jpi-plugin#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.
  • Loading branch information
steneker committed Jun 16, 2020
1 parent e2f7791 commit 1aa57d5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand All @@ -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()
}
Expand Down
2 changes: 1 addition & 1 deletion settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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/'
}
}
}
Expand Down

0 comments on commit 1aa57d5

Please sign in to comment.