File tree 3 files changed +5
-69
lines changed
modules/bcv-gradle-plugin/src/main/kotlin
3 files changed +5
-69
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 38
38
checks : write
39
39
with :
40
40
checkout-ref : ${{ inputs.checkout-ref || github.event.repository.default_branch }}
41
-
42
- publish-site :
43
- needs : tests
44
- # only publish site when releasing
45
- if : github.ref == 'refs/heads/main' && github.event_name == 'release' && github.event.action == 'created'
46
- uses : ./.github/workflows/run_publish_site.yml
47
- permissions :
48
- contents : read
49
- packages : write
50
- checks : write
51
- pages : write
52
- id-token : write
53
- with :
54
- checkout-ref : ${{ inputs.checkout-ref || github.event.repository.default_branch }}
Original file line number Diff line number Diff line change @@ -7,8 +7,10 @@ import dev.adamko.kotlin.binary_compatibility_validator.BCVPlugin.Companion.API_
7
7
import dev.adamko.kotlin.binary_compatibility_validator.BCVPlugin.Companion.EXTENSION_NAME
8
8
import dev.adamko.kotlin.binary_compatibility_validator.BCVPlugin.Companion.RUNTIME_CLASSPATH_CONFIGURATION_NAME
9
9
import dev.adamko.kotlin.binary_compatibility_validator.BCVPlugin.Companion.RUNTIME_CLASSPATH_RESOLVER_CONFIGURATION_NAME
10
- import dev.adamko.kotlin.binary_compatibility_validator.internal.*
11
- import dev.adamko.kotlin.binary_compatibility_validator.internal.Dynamic.Companion.Dynamic
10
+ import dev.adamko.kotlin.binary_compatibility_validator.internal.BCVInternalApi
11
+ import dev.adamko.kotlin.binary_compatibility_validator.internal.declarable
12
+ import dev.adamko.kotlin.binary_compatibility_validator.internal.resolvable
13
+ import dev.adamko.kotlin.binary_compatibility_validator.internal.sourceSets
12
14
import dev.adamko.kotlin.binary_compatibility_validator.tasks.BCVApiCheckTask
13
15
import dev.adamko.kotlin.binary_compatibility_validator.tasks.BCVApiDumpTask
14
16
import dev.adamko.kotlin.binary_compatibility_validator.tasks.BCVApiGenerateTask
@@ -201,7 +203,7 @@ constructor(
201
203
}
202
204
}
203
205
}
204
- }
206
+ }
205
207
}
206
208
207
209
private fun createJavaTestFixtureTargets (
You can’t perform that action at this time.
0 commit comments