@@ -5,14 +5,6 @@ A Gradle Plugin for setting up Kotlin Multiplatform projects.
5
5
2 . Enables passing of build targets via command line to control what gets
6
6
configured (great for CI).
7
7
8
- ## Requirements
9
-
10
- Minimum supported versions:
11
- - Gradle: ` 6.7 `
12
- - Kotlin Gradle Plugin: ` 1.6.0 `
13
- - Android Gradle Plugin: ` 4.1.0 `
14
- - Java: ` 11 `
15
-
16
8
## Hierarchical Source Set Structure
17
9
18
10
Will automatically configure project with a hierarchical source set structure
@@ -350,7 +342,7 @@ plugins {
350
342
id(" com.android.library" ) version(" x.x.x" ) apply (false )
351
343
352
344
id(" org.jetbrains.kotlin.multiplatform" ) version(" x.x.x" ) apply (false )
353
- id(" io.matthewnelson.kmp.configuration" ) version(" 0.2.2 " )
345
+ id(" io.matthewnelson.kmp.configuration" ) version(" 0.3.0 " )
354
346
}
355
347
```
356
348
@@ -370,7 +362,7 @@ plugins {
370
362
id 'com.android.library' version 'x.x.x' apply false
371
363
372
364
id 'org.jetbrains.kotlin.multiplatform' version 'x.x.x' apply false
373
- id 'io.matthewnelson.kmp.configuration' version '0.2.2 '
365
+ id 'io.matthewnelson.kmp.configuration' version '0.3.0 '
374
366
}
375
367
```
376
368
@@ -392,7 +384,7 @@ buildscript {
392
384
dependencies {
393
385
// kotlin gradle
394
386
// android gradle (if you have an android target)
395
- classpath(" io.matthewnelson:gradle-kmp-configuration-plugin:0.2.2 " )
387
+ classpath(" io.matthewnelson:gradle-kmp-configuration-plugin:0.3.0 " )
396
388
}
397
389
}
398
390
```
@@ -424,7 +416,7 @@ buildscript {
424
416
mavenCentral()
425
417
}
426
418
dependencies {
427
- classpath 'io.matthewnelson:gradle-kmp-configuration-plugin:0.2.2 '
419
+ classpath 'io.matthewnelson:gradle-kmp-configuration-plugin:0.3.0 '
428
420
}
429
421
}
430
422
```
0 commit comments