Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
# A workflow for publishing the plugin to the Gradle Plugin Portal
#
# Release Process:
# 1. Update the version number in root build.gradle to the next non-SNAPSHOT version.
# e.g. replace `version '1.2.3-SNAPSHOT' with '1.2.3'
# 2. Replace all references to the last release number with the new release number.
# e.g. search for `1.2.2` and replace with `1.2.3`.
# 3. Commit changes in PR and merge.
# 4. Run this workflow to publish the plugin.
# 5. Update the version number in root build.gradle to the next -SNAPSHOT version.
## e.g. replace `version '1.2.3' with '1.2.4-SNAPSHOT'

name: Publish to the Gradle Plugin Portal

on: [workflow_dispatch]
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ The main build file should look as follows:

```groovy
plugins {
id 'org.javamodularity.moduleplugin' version '1.8.13' apply false
id 'org.javamodularity.moduleplugin' version '1.8.14' apply false
}

subprojects {
Expand Down Expand Up @@ -127,7 +127,7 @@ subprojects {

```kotlin
plugins {
id("org.javamodularity.moduleplugin") version "1.8.13" apply false
id("org.javamodularity.moduleplugin") version "1.8.14" 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.14-SNAPSHOT'
version '1.8.14'

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

subprojects {
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.13" apply false
id("org.javamodularity.moduleplugin") version "1.8.14" 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.13' apply false
id 'org.javamodularity.moduleplugin' version '1.8.14' 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.13' apply false
id 'org.javamodularity.moduleplugin' version '1.8.14' apply false
}

subprojects {
Expand Down