Skip to content

Commit

Permalink
Move localPlatformArtifacts() to the top of the `defaultRepositorie…
Browse files Browse the repository at this point in the history
…s()` list
  • Loading branch information
hsz committed Oct 11, 2024
1 parent fc16d06 commit 8a51d31
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@

- Introduce `intellijPlatformClasspath` configuration to allow retrieving the processed IntelliJ Platform and plugins dependencies.

### Changed

- Move `localPlatformArtifacts()` to the top of the `defaultRepositories()` list

### Fixed

- Fixed issue #1778 by removing a hash of the absolute artifact path appended to the end of the version string. That hash made artifact version different on different PCs and also breaks Gradle dependency locking.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -226,11 +226,11 @@ abstract class IntelliJPlatformRepositoriesExtension @Inject constructor(
* - [marketplace] – JetBrains Marketplace plugins repository
*/
fun defaultRepositories() {
localPlatformArtifacts()
jetbrainsIdeInstallers()
androidStudioInstallers()
releases()
snapshots()
localPlatformArtifacts()
intellijDependencies()
marketplace()
}
Expand Down

0 comments on commit 8a51d31

Please sign in to comment.