-
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.
Move plugin versions from version catalog to buildscript.dependencies (…
- Loading branch information
1 parent
7f57084
commit 89f684b
Showing
8 changed files
with
70 additions
and
73 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
4 changes: 2 additions & 2 deletions
4
gradle/plugin/base/build-parameters/build-parameters.gradle.kts
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,11 +1,22 @@ | ||
/* | ||
* Copyright (c) 2023, the Pixnews project authors and contributors. Please see the AUTHORS file for details. | ||
* Copyright (c) 2023-2024, the Pixnews project authors and contributors. Please see the AUTHORS file for details. | ||
* Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. | ||
*/ | ||
dependencyResolutionManagement { | ||
@Suppress("UnstableApiUsage") | ||
repositories.gradlePluginPortal() | ||
} | ||
|
||
// Workaround for https://github.com/gradle/gradle/issues/26020 | ||
buildscript { | ||
repositories { | ||
mavenCentral() | ||
gradlePluginPortal() | ||
} | ||
dependencies { | ||
classpath("org.gradlex:build-parameters:1.4.3") | ||
} | ||
} | ||
|
||
rootProject.name = "gradle-build-parameters" | ||
rootProject.buildFileName = "build-parameters.gradle.kts" |
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,11 +1,22 @@ | ||
/* | ||
* Copyright (c) 2023, the Pixnews project authors and contributors. Please see the AUTHORS file for details. | ||
* Copyright (c) 2023-2024, the Pixnews project authors and contributors. Please see the AUTHORS file for details. | ||
* Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file. | ||
*/ | ||
dependencyResolutionManagement { | ||
@Suppress("UnstableApiUsage") | ||
repositories.gradlePluginPortal() | ||
} | ||
|
||
// Workaround for https://github.com/gradle/gradle/issues/26020 | ||
buildscript { | ||
repositories { | ||
mavenCentral() | ||
gradlePluginPortal() | ||
} | ||
dependencies { | ||
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:$embeddedKotlinVersion") | ||
} | ||
} | ||
|
||
rootProject.name = "gradle-kotlindsl" | ||
rootProject.buildFileName = "kotlindsl.gradle.kts" |
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
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