diff options
| author | Fabian Mastenbroek <mail.fabianm@gmail.com> | 2021-05-07 11:59:46 +0200 |
|---|---|---|
| committer | Fabian Mastenbroek <mail.fabianm@gmail.com> | 2021-05-07 12:00:10 +0200 |
| commit | 324d7eccf5892a509dc76c7abcecf20fec09a877 (patch) | |
| tree | a3dd467efdb3f9a4fe02259f479c1211338fd9fc /buildSrc | |
| parent | d60e230c29beeeaa825987d5abf43c1e6f450dad (diff) | |
build: Use Gradle version catalog
This change adds support for the Gradle version catalog feature in our
build configuration. This allows us to have a single file,
gradle/libs.versions.toml, which contains all the dependency versions
used in this project.
Diffstat (limited to 'buildSrc')
| -rw-r--r-- | buildSrc/build.gradle.kts | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/buildSrc/build.gradle.kts b/buildSrc/build.gradle.kts index 73c4fdf8..3b793a61 100644 --- a/buildSrc/build.gradle.kts +++ b/buildSrc/build.gradle.kts @@ -28,12 +28,8 @@ plugins { /* Project configuration */ repositories { + mavenCentral() gradlePluginPortal() - maven("https://maven.pkg.jetbrains.space/public/p/kotlinx-html/maven") { - content { - includeGroup("org.jetbrains.kotlinx") - } - } } dependencies { |
