Skip to content

Commit 9640725

Browse files
Merge pull request #265 from big-andy-coates/release-1.8.15
Release 1.8.15
2 parents 76c2e4e + b9c0347 commit 9640725

File tree

7 files changed

+14
-14
lines changed

7 files changed

+14
-14
lines changed

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -35,12 +35,12 @@ An example application using this plugin is available [here](https://github.com/
3535
Compatability
3636
===
3737

38-
| Plugin Version | Gradle Versions | Java Version | Kotlin Version | Notes |
39-
|--------------------|-----------------|--------------|----------------|--------------------------------------------------------------------------------------------|
40-
| - -> 1.18.12 | 5.+ -> 7.5.+ | 11+ | 1.0.+ -> 1.6.+ | |
41-
| 1.18.12 -> 1.18.13 | 5.+ -> 7.5.+ | 11+ | 1.0.+ -> 1.9.+ | Adds support for Kotlin 1.7 and above. |
42-
| 1.18.14 | 5.+ -> 7.6.+ | 11+ | 1.0.+ -> 1.9.+ | Fixes compatibility issue with Gradle 7.6 |
43-
| 1.18.15 -> + | 5.+ -> 8.6.+ | 11+ | 1.6.+ -> 1.9.+ | Fixes compatibility issues with Gradle 8.0.<br>Use JUnit v5.8.0 or above if using Gradle 8 |
38+
| Plugin Version | Gradle Versions | Java Version | Kotlin Version | Notes |
39+
|------------------|-----------------|--------------|----------------|--------------------------------------------------------------------------------------------|
40+
| - -> 1.8.12 | 5.+ -> 7.5.+ | 11+ | 1.0.+ -> 1.6.+ | |
41+
| 1.8.12 -> 1.8.13 | 5.+ -> 7.5.+ | 11+ | 1.0.+ -> 1.9.+ | Adds support for Kotlin 1.7 and above. |
42+
| 1.8.14 | 5.+ -> 7.6.+ | 11+ | 1.0.+ -> 1.9.+ | Fixes compatibility issue with Gradle 7.6 |
43+
| 1.8.15 -> + | 5.+ -> 8.6.+ | 11+ | 1.6.+ -> 1.9.+ | Fixes compatibility issues with Gradle 8.0.<br>Use JUnit v5.8.0 or above if using Gradle 8 |
4444

4545
Setup
4646
===
@@ -76,7 +76,7 @@ The main build file should look as follows:
7676

7777
```groovy
7878
plugins {
79-
id 'org.javamodularity.moduleplugin' version '1.8.14' apply false
79+
id 'org.javamodularity.moduleplugin' version '1.8.15' apply false
8080
}
8181
8282
subprojects {
@@ -113,7 +113,7 @@ subprojects {
113113

114114
```kotlin
115115
plugins {
116-
id("org.javamodularity.moduleplugin") version "1.8.14" apply false
116+
id("org.javamodularity.moduleplugin") version "1.8.15" apply false
117117
}
118118

119119
subprojects {

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ buildScan {
1313
}
1414

1515
group 'org.javamodularity'
16-
version '1.8.15-SNAPSHOT'
16+
version '1.8.15'
1717

1818
sourceCompatibility = 11
1919
targetCompatibility = 11

test-project-groovy/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
plugins {
2-
id 'org.javamodularity.moduleplugin' version '1.8.14' apply false
2+
id 'org.javamodularity.moduleplugin' version '1.8.15' apply false
33
}
44

55
subprojects {

test-project-kotlin-pre-1-7/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
22

33
plugins {
44
kotlin("jvm") version "1.3.72" apply false
5-
id("org.javamodularity.moduleplugin") version "1.8.14" apply false
5+
id("org.javamodularity.moduleplugin") version "1.8.15" apply false
66
}
77

88
if (gradle.gradleVersion >= "8.0") {

test-project-kotlin/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
22

33
plugins {
44
kotlin("jvm") version "1.9.22" apply false
5-
id("org.javamodularity.moduleplugin") version "1.8.14" apply false
5+
id("org.javamodularity.moduleplugin") version "1.8.15" apply false
66
}
77

88
subprojects {

test-project-mixed/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
plugins {
2-
id 'org.javamodularity.moduleplugin' version '1.8.14' apply false
2+
id 'org.javamodularity.moduleplugin' version '1.8.15' apply false
33
}
44

55
subprojects {

test-project/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
plugins {
2-
id 'org.javamodularity.moduleplugin' version '1.8.14' apply false
2+
id 'org.javamodularity.moduleplugin' version '1.8.15' apply false
33
}
44

55
subprojects {

0 commit comments

Comments
 (0)