Skip to content

Commit 6db6e41

Browse files
1.8.14 release prep
1 parent 21d10c3 commit 6db6e41

File tree

8 files changed

+20
-8
lines changed

8 files changed

+20
-8
lines changed

.github/workflows/publish.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
# A workflow for publishing the plugin to the Gradle Plugin Portal
2+
#
3+
# Release Process:
4+
# 1. Update the version number in root build.gradle to the next non-SNAPSHOT version.
5+
# e.g. replace `version '1.2.3-SNAPSHOT' with '1.2.3'
6+
# 2. Replace all references to the last release number with the new release number.
7+
# e.g. search for `1.2.2` and replace with `1.2.3`.
8+
# 3. Commit changes in PR and merge.
9+
# 4. Run this workflow to publish the plugin.
10+
# 5. Update the version number in root build.gradle to the next -SNAPSHOT version.
11+
## e.g. replace `version '1.2.3' with '1.2.4-SNAPSHOT'
12+
113
name: Publish to the Gradle Plugin Portal
214

315
on: [workflow_dispatch]

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ The main build file should look as follows:
9090

9191
```groovy
9292
plugins {
93-
id 'org.javamodularity.moduleplugin' version '1.8.13' apply false
93+
id 'org.javamodularity.moduleplugin' version '1.8.14' apply false
9494
}
9595
9696
subprojects {
@@ -127,7 +127,7 @@ subprojects {
127127

128128
```kotlin
129129
plugins {
130-
id("org.javamodularity.moduleplugin") version "1.8.13" apply false
130+
id("org.javamodularity.moduleplugin") version "1.8.14" apply false
131131
}
132132

133133
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.14-SNAPSHOT'
16+
version '1.8.14'
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.13' apply false
2+
id 'org.javamodularity.moduleplugin' version '1.8.14' 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.13" apply false
5+
id("org.javamodularity.moduleplugin") version "1.8.14" apply false
66
}
77

88
subprojects {

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.13" apply false
5+
id("org.javamodularity.moduleplugin") version "1.8.14" 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.13' apply false
2+
id 'org.javamodularity.moduleplugin' version '1.8.14' 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.13' apply false
2+
id 'org.javamodularity.moduleplugin' version '1.8.14' apply false
33
}
44

55
subprojects {

0 commit comments

Comments
 (0)