File tree Expand file tree Collapse file tree 1 file changed +7
-14
lines changed Expand file tree Collapse file tree 1 file changed +7
-14
lines changed Original file line number Diff line number Diff line change @@ -13,19 +13,6 @@ repositories {
13
13
}
14
14
15
15
kotlin {
16
- sourceSets {
17
- val commonMain by getting {
18
- dependencies {
19
- implementation(" org.jetbrains.kotlinx:kotlinx-datetime:0.4.0" )
20
- implementation(" com.garbereder.tasktracker.entities:Task-Tracker-Entities:1.0-SNAPSHOT" )
21
- }
22
- }
23
- val commonTest by getting {
24
- dependencies {
25
- implementation(" io.mockative:mockative:1.4.1" )
26
- }
27
- }
28
- }
29
16
jvm {
30
17
jvmToolchain(17 )
31
18
withJava()
@@ -52,9 +39,15 @@ kotlin {
52
39
53
40
54
41
sourceSets {
55
- val commonMain by getting
42
+ val commonMain by getting {
43
+ dependencies {
44
+ implementation(" org.jetbrains.kotlinx:kotlinx-datetime:0.4.0" )
45
+ implementation(" com.garbereder.tasktracker.entities:Task-Tracker-Entities:1.0-SNAPSHOT" )
46
+ }
47
+ }
56
48
val commonTest by getting {
57
49
dependencies {
50
+ implementation(" io.mockative:mockative:1.4.1" )
58
51
implementation(kotlin(" test" ))
59
52
}
60
53
}
You can’t perform that action at this time.
0 commit comments