Skip to content

Commit

Permalink
Merge pull request #265 from big-andy-coates/release-1.8.15
Browse files Browse the repository at this point in the history
Release 1.8.15
  • Loading branch information
big-andy-coates authored Mar 7, 2024
2 parents 76c2e4e + b9c0347 commit 9640725
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 14 deletions.
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,12 +35,12 @@ An example application using this plugin is available [here](https://github.com/
Compatability
===

| Plugin Version | Gradle Versions | Java Version | Kotlin Version | Notes |
|--------------------|-----------------|--------------|----------------|--------------------------------------------------------------------------------------------|
| - -> 1.18.12 | 5.+ -> 7.5.+ | 11+ | 1.0.+ -> 1.6.+ | |
| 1.18.12 -> 1.18.13 | 5.+ -> 7.5.+ | 11+ | 1.0.+ -> 1.9.+ | Adds support for Kotlin 1.7 and above. |
| 1.18.14 | 5.+ -> 7.6.+ | 11+ | 1.0.+ -> 1.9.+ | Fixes compatibility issue with Gradle 7.6 |
| 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 |
| Plugin Version | Gradle Versions | Java Version | Kotlin Version | Notes |
|------------------|-----------------|--------------|----------------|--------------------------------------------------------------------------------------------|
| - -> 1.8.12 | 5.+ -> 7.5.+ | 11+ | 1.0.+ -> 1.6.+ | |
| 1.8.12 -> 1.8.13 | 5.+ -> 7.5.+ | 11+ | 1.0.+ -> 1.9.+ | Adds support for Kotlin 1.7 and above. |
| 1.8.14 | 5.+ -> 7.6.+ | 11+ | 1.0.+ -> 1.9.+ | Fixes compatibility issue with Gradle 7.6 |
| 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 |

Setup
===
Expand Down Expand Up @@ -76,7 +76,7 @@ The main build file should look as follows:

```groovy
plugins {
id 'org.javamodularity.moduleplugin' version '1.8.14' apply false
id 'org.javamodularity.moduleplugin' version '1.8.15' apply false
}
subprojects {
Expand Down Expand Up @@ -113,7 +113,7 @@ subprojects {

```kotlin
plugins {
id("org.javamodularity.moduleplugin") version "1.8.14" apply false
id("org.javamodularity.moduleplugin") version "1.8.15" apply false
}

subprojects {
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ buildScan {
}

group 'org.javamodularity'
version '1.8.15-SNAPSHOT'
version '1.8.15'

sourceCompatibility = 11
targetCompatibility = 11
Expand Down
2 changes: 1 addition & 1 deletion test-project-groovy/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
id 'org.javamodularity.moduleplugin' version '1.8.14' apply false
id 'org.javamodularity.moduleplugin' version '1.8.15' apply false
}

subprojects {
Expand Down
2 changes: 1 addition & 1 deletion test-project-kotlin-pre-1-7/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import org.jetbrains.kotlin.gradle.tasks.KotlinCompile

plugins {
kotlin("jvm") version "1.3.72" apply false
id("org.javamodularity.moduleplugin") version "1.8.14" apply false
id("org.javamodularity.moduleplugin") version "1.8.15" apply false
}

if (gradle.gradleVersion >= "8.0") {
Expand Down
2 changes: 1 addition & 1 deletion test-project-kotlin/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import org.jetbrains.kotlin.gradle.tasks.KotlinCompile

plugins {
kotlin("jvm") version "1.9.22" apply false
id("org.javamodularity.moduleplugin") version "1.8.14" apply false
id("org.javamodularity.moduleplugin") version "1.8.15" apply false
}

subprojects {
Expand Down
2 changes: 1 addition & 1 deletion test-project-mixed/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
id 'org.javamodularity.moduleplugin' version '1.8.14' apply false
id 'org.javamodularity.moduleplugin' version '1.8.15' apply false
}

subprojects {
Expand Down
2 changes: 1 addition & 1 deletion test-project/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
id 'org.javamodularity.moduleplugin' version '1.8.14' apply false
id 'org.javamodularity.moduleplugin' version '1.8.15' apply false
}

subprojects {
Expand Down

0 comments on commit 9640725

Please sign in to comment.