File tree Expand file tree Collapse file tree 4 files changed +9
-11
lines changed Expand file tree Collapse file tree 4 files changed +9
-11
lines changed Original file line number Diff line number Diff line change 12
12
runs-on : ubuntu-20.04
13
13
14
14
steps :
15
- # actions/checkout v1.* is needed for correct codecov upload, see https://github.com/actions/checkout/issues/237 for details
16
15
- uses : actions/checkout@v2
17
- # ensure that gradle wrapper files in repository are valid by checking checksums
18
- - uses : gradle/wrapper-validation-action@v1
19
16
- name : Set up JDK 11
20
17
uses : actions/setup-java@v2
21
18
with :
33
30
name : gradle-test-report
34
31
path : ' **/build/reports/'
35
32
- name : Code coverage report
36
- # disabled until repo is private
37
33
uses : codecov/codecov-action@v2
38
34
with :
39
35
flags : unittests
Original file line number Diff line number Diff line change @@ -5,17 +5,12 @@ import org.jetbrains.kotlin.gradle.targets.jvm.tasks.KotlinJvmTest
5
5
plugins {
6
6
alias(libs.plugins.kotlin.multiplatform)
7
7
jacoco
8
- id(" com.github.ben-manes.versions" ) version " 0.39.0"
9
8
}
10
9
11
10
configureVersioning()
12
11
group = " io.github.petertrr"
13
12
description = " A multiplatform Kotlin library for calculating text differences"
14
13
15
- repositories {
16
- mavenCentral()
17
- }
18
-
19
14
kotlin {
20
15
explicitApi()
21
16
Original file line number Diff line number Diff line change 1
1
distributionBase =GRADLE_USER_HOME
2
2
distributionPath =wrapper/dists
3
- distributionUrl =https\://services.gradle.org/distributions/gradle-7.3-bin.zip
3
+ distributionSha256Sum =23b89f8eac363f5f4b8336e0530c7295c55b728a9caa5268fdd4a532610d5392
4
+ distributionUrl =https\://services.gradle.org/distributions/gradle-7.3.2-bin.zip
4
5
zipStoreBase =GRADLE_USER_HOME
5
6
zipStorePath =wrapper/dists
Original file line number Diff line number Diff line change 1
1
rootProject.name = " kotlin-multiplatform-diff"
2
- enableFeaturePreview(" VERSION_CATALOGS" )
2
+ enableFeaturePreview(" VERSION_CATALOGS" )
3
+
4
+ dependencyResolutionManagement {
5
+ repositories {
6
+ mavenCentral()
7
+ }
8
+ }
You can’t perform that action at this time.
0 commit comments