Skip to content

Commit

Permalink
chore(deps): update dependency gradle to v7.3.2 (#14)
Browse files Browse the repository at this point in the history
* chore: gradle 7.3.2
* Add distributionSha256Sum
* Add centralized repositories declaration in `settings.gradle.kts`
* Remove versions plugin
* Cleanup `build_and_test.yml`

Co-authored-by: Peter Trifaniov <peter.trifanov@mail.ru>
  • Loading branch information
renovate[bot] and petertrr authored Dec 18, 2021
1 parent da4b69d commit 5479bd8
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 11 deletions.
4 changes: 0 additions & 4 deletions .github/workflows/build_and_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,7 @@ jobs:
runs-on: ubuntu-20.04

steps:
# actions/checkout v1.* is needed for correct codecov upload, see https://github.com/actions/checkout/issues/237 for details
- uses: actions/checkout@v2
# ensure that gradle wrapper files in repository are valid by checking checksums
- uses: gradle/wrapper-validation-action@v1
- name: Set up JDK 11
uses: actions/setup-java@v2
with:
Expand All @@ -33,7 +30,6 @@ jobs:
name: gradle-test-report
path: '**/build/reports/'
- name: Code coverage report
# disabled until repo is private
uses: codecov/codecov-action@v2
with:
flags: unittests
Expand Down
5 changes: 0 additions & 5 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,12 @@ import org.jetbrains.kotlin.gradle.targets.jvm.tasks.KotlinJvmTest
plugins {
alias(libs.plugins.kotlin.multiplatform)
jacoco
id("com.github.ben-manes.versions") version "0.39.0"
}

configureVersioning()
group = "io.github.petertrr"
description = "A multiplatform Kotlin library for calculating text differences"

repositories {
mavenCentral()
}

kotlin {
explicitApi()

Expand Down
3 changes: 2 additions & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.3-bin.zip
distributionSha256Sum=23b89f8eac363f5f4b8336e0530c7295c55b728a9caa5268fdd4a532610d5392
distributionUrl=https\://services.gradle.org/distributions/gradle-7.3.2-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
8 changes: 7 additions & 1 deletion settings.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,2 +1,8 @@
rootProject.name = "kotlin-multiplatform-diff"
enableFeaturePreview("VERSION_CATALOGS")
enableFeaturePreview("VERSION_CATALOGS")

dependencyResolutionManagement {
repositories {
mavenCentral()
}
}

0 comments on commit 5479bd8

Please sign in to comment.