We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bbd0f8f commit ee71adaCopy full SHA for ee71ada
hll/dynamodb-mapper/tests/dynamodb-mapper-schema-generator-plugin-test/build.gradle.kts
@@ -3,8 +3,6 @@
3
* SPDX-License-Identifier: Apache-2.0
4
*/
5
6
-val sdkVersion: String by project
7
-
8
plugins {
9
id("aws.sdk.kotlin.hll.dynamodbmapper.schema.generator")
10
}
settings.gradle.kts
@@ -16,10 +16,13 @@ pluginManagement {
16
17
18
19
20
- val sdkVersion: String by settings
21
- plugins {
22
- id("aws.sdk.kotlin.hll.dynamodbmapper.schema.generator") version sdkVersion
+ resolutionStrategy {
+ val sdkVersion: String by settings
+ eachPlugin {
+ if (requested.id.id == "aws.sdk.kotlin.hll.dynamodbmapper.schema.generator") {
23
+ useModule("aws.sdk.kotlin:dynamodb-mapper-schema-generator-plugin:$sdkVersion")
24
+ }
25
26
27
28
0 commit comments