Skip to content

Commit

Permalink
Prepare next development version (#350)
Browse files Browse the repository at this point in the history
  • Loading branch information
jaredsburrows authored Oct 11, 2024
1 parent 96dc547 commit 14939af
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 15 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Change Log

## Version 1.6.2 (2024-10-11)

* [#301](https://github.com/jaredsburrows/gradle-spoon-plugin/pull/301) Fix arparser issue

## Version 1.6.0 (2022-04-27)

* [#108](https://github.com/jaredsburrows/gradle-spoon-plugin/pull/108) Gradle Configuration Cache
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ buildscript {
}
dependencies {
classpath 'com.jaredsburrows:gradle-spoon-plugin:1.6.0'
classpath 'com.jaredsburrows:gradle-spoon-plugin:1.6.2'
}
}
Expand Down Expand Up @@ -48,7 +48,7 @@ buildscript {
}
dependencies {
classpath 'com.jaredsburrows:gradle-spoon-plugin:1.6.1-SNAPSHOT'
classpath 'com.jaredsburrows:gradle-spoon-plugin:1.6.3-SNAPSHOT'
}
}
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ plugins {
id 'org.jetbrains.dokka' version '1.9.20' apply false
id 'org.jlleitschuh.gradle.ktlint' version '12.1.1' apply false
id 'com.vanniktech.maven.publish' version '0.25.3' apply false
id 'com.gradle.plugin-publish' version '0.21.0' apply false
id 'com.gradle.plugin-publish' version '1.3.0' apply false
id 'com.github.ben-manes.versions' version '0.51.0'
id 'java-gradle-plugin'
id 'java-library'
Expand Down
15 changes: 4 additions & 11 deletions gradle-spoon-plugin/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -50,23 +50,16 @@ dependencies {
testImplementation deps.junit
}

pluginBundle {
gradlePlugin {
website = POM_URL
vcsUrl = POM_SCM_URL
description = POM_DESCRIPTION
tags = ['spoon']

plugins {
spoonPlugin {
displayName = POM_NAME
}
}
}
gradlePlugin {
plugins {
spoonPlugin {
id = PLUGIN_NAME
implementationClass = PLUGIN_NAME_CLASS
displayName = POM_NAME
description = POM_DESCRIPTION
tags.set(['spoon'])
}
}
}
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ SONATYPE_AUTOMATIC_RELEASE=true
RELEASE_SIGNING_ENABLED=true

GROUP=com.jaredsburrows
VERSION_NAME=1.6.1-SNAPSHOT
VERSION_NAME=1.6.3-SNAPSHOT

POM_INCEPTION_YEAR=2017
POM_PACKAGING=jar
Expand Down

0 comments on commit 14939af

Please sign in to comment.