-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
20118: [Build] Enabled Nexus repository for IntelliJ plugin, Jenkins …
…plugin and Java projects (TICS Viewer, etc.). We are now running an instance of Nexus at https://artifacts.tiobe.com. It includes mirrors for the following Maven repositories: - Maven central (used for all kinds of Java libraries) - Gradle plugins - IntelliJ - Jenkins In addition to this, the following websites are mirrored as raw repositories: - Gradle distributions (used for downloading versions of Gradle via the wrapper) - IntelliJ JDK (used to obtain JDK versions to run IntelliJ) This will mean the following: - We should no longer be dependent on external sources for these builds; if a repository is (temporarily) unavailable, it won't break any builds - When performing a build outside of TIOBE, it may fail due to https://artifacts.tiobe.com being unavailable; in that case, refer to the respective build file for a workaround - Within the TIOBE offices, obtaining external artifacts should be drastically faster Reviewed by @reniers.
- Loading branch information
steneker
committed
May 29, 2020
1 parent
888f318
commit e2f7791
Showing
3 changed files
with
44 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
distributionBase=GRADLE_USER_HOME | ||
distributionPath=wrapper/dists | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-5.6.2-bin.zip | ||
distributionUrl=https\://artifacts.tiobe.com/repository/gradle-distributions/gradle-5.6.2-bin.zip | ||
zipStoreBase=GRADLE_USER_HOME | ||
zipStorePath=wrapper/dists |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,12 @@ | ||
pluginManagement { | ||
repositories { | ||
// Specifying this custom repository enables us to cache Gradle plugins within TIOBE. | ||
// 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/' | ||
} | ||
} | ||
} | ||
|
||
rootProject.name = 'TICSIntelliJ' |