File tree 4 files changed +10
-18
lines changed
plugin/main/src/kotlinx/benchmark/gradle
4 files changed +10
-18
lines changed Original file line number Diff line number Diff line change @@ -17,12 +17,11 @@ constructor(
17
17
private val workerExecutor: WorkerExecutor
18
18
) : DefaultTask () {
19
19
20
- @InputFiles
21
- @PathSensitive( PathSensitivity . RELATIVE )
20
+
21
+ @Classpath
22
22
lateinit var inputClassesDirs: FileCollection
23
23
24
- @InputFiles
25
- @PathSensitive(PathSensitivity .RELATIVE )
24
+ @Classpath
26
25
lateinit var inputCompileClasspath: FileCollection
27
26
28
27
@OutputDirectory
@@ -31,8 +30,7 @@ constructor(
31
30
@OutputDirectory
32
31
lateinit var outputSourcesDir: File
33
32
34
- @InputFiles
35
- @PathSensitive(PathSensitivity .RELATIVE )
33
+ @Classpath
36
34
lateinit var runtimeClasspath: FileCollection
37
35
38
36
@Optional
Original file line number Diff line number Diff line change @@ -25,12 +25,10 @@ constructor(
25
25
@Input
26
26
var useBenchmarkJs: Boolean = true
27
27
28
- @InputFiles
29
- @PathSensitive(PathSensitivity .RELATIVE )
28
+ @Classpath
30
29
lateinit var inputClassesDirs: FileCollection
31
30
32
- @InputFiles
33
- @PathSensitive(PathSensitivity .RELATIVE )
31
+ @Classpath
34
32
lateinit var inputDependencies: FileCollection
35
33
36
34
@OutputDirectory
Original file line number Diff line number Diff line change @@ -21,12 +21,10 @@ constructor(
21
21
@Input
22
22
lateinit var title: String
23
23
24
- @InputFiles
25
- @PathSensitive(PathSensitivity .RELATIVE )
24
+ @Classpath
26
25
lateinit var inputClassesDirs: FileCollection
27
26
28
- @InputFiles
29
- @PathSensitive(PathSensitivity .RELATIVE )
27
+ @Classpath
30
28
lateinit var inputDependencies: FileCollection
31
29
32
30
@OutputDirectory
Original file line number Diff line number Diff line change @@ -22,12 +22,10 @@ constructor(
22
22
@Input
23
23
lateinit var title: String
24
24
25
- @InputFiles
26
- @PathSensitive(PathSensitivity .RELATIVE )
25
+ @Classpath
27
26
lateinit var inputClassesDirs: FileCollection
28
27
29
- @InputFiles
30
- @PathSensitive(PathSensitivity .RELATIVE )
28
+ @Classpath
31
29
lateinit var inputDependencies: FileCollection
32
30
33
31
@OutputDirectory
You can’t perform that action at this time.
0 commit comments