@@ -333,6 +333,8 @@ kmpConfiguration {
333
333
<details open >
334
334
<summary>Kotlin</summary>
335
335
336
+ <!-- TAG_VERSION -->
337
+
336
338
``` kotlin
337
339
plugins {
338
340
// If you are using androidApp (as depicted in the above example)
@@ -342,7 +344,7 @@ plugins {
342
344
id(" com.android.library" ) version(" x.x.x" ) apply (false )
343
345
344
346
id(" org.jetbrains.kotlin.multiplatform" ) version(" x.x.x" ) apply (false )
345
- id(" io.matthewnelson.kmp.configuration" ) version(" 0.1.5 " )
347
+ id(" io.matthewnelson.kmp.configuration" ) version(" 0.1.6 " )
346
348
}
347
349
```
348
350
@@ -351,6 +353,8 @@ plugins {
351
353
<details >
352
354
<summary>Groovy</summary>
353
355
356
+ <!-- TAG_VERSION -->
357
+
354
358
``` groovy
355
359
plugins {
356
360
// If you are using androidApp (as depicted in the above example)
@@ -360,7 +364,7 @@ plugins {
360
364
id 'com.android.library' version 'x.x.x' apply false
361
365
362
366
id 'org.jetbrains.kotlin.multiplatform' version 'x.x.x' apply false
363
- id 'io.matthewnelson.kmp.configuration' version '0.1.5 '
367
+ id 'io.matthewnelson.kmp.configuration' version '0.1.6 '
364
368
}
365
369
```
366
370
@@ -370,6 +374,8 @@ plugins {
370
374
<details open >
371
375
<summary>Kotlin</summary>
372
376
377
+ <!-- TAG_VERSION -->
378
+
373
379
top-level build file:
374
380
``` kotlin
375
381
buildscript {
@@ -380,7 +386,7 @@ buildscript {
380
386
dependencies {
381
387
// kotlin gradle
382
388
// android gradle (if you have an android target)
383
- classpath(" io.matthewnelson:gradle-kmp-configuration-plugin:0.1.5 " )
389
+ classpath(" io.matthewnelson:gradle-kmp-configuration-plugin:0.1.6 " )
384
390
}
385
391
}
386
392
```
@@ -403,14 +409,16 @@ kmpConfiguration {
403
409
<details >
404
410
<summary>Groovy</summary>
405
411
412
+ <!-- TAG_VERSION -->
413
+
406
414
top-level build file:
407
415
``` groovy
408
416
buildscript {
409
417
repositories {
410
418
mavenCentral()
411
419
}
412
420
dependencies {
413
- classpath 'io.matthewnelson:gradle-kmp-configuration-plugin:0.1.5 '
421
+ classpath 'io.matthewnelson:gradle-kmp-configuration-plugin:0.1.6 '
414
422
}
415
423
}
416
424
```
0 commit comments