Skip to content

Commit 14939af

Browse files
Prepare next development version (#350)
1 parent 96dc547 commit 14939af

File tree

5 files changed

+12
-15
lines changed

5 files changed

+12
-15
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Change Log
22

3+
## Version 1.6.2 (2024-10-11)
4+
5+
* [#301](https://github.com/jaredsburrows/gradle-spoon-plugin/pull/301) Fix arparser issue
6+
37
## Version 1.6.0 (2022-04-27)
48

59
* [#108](https://github.com/jaredsburrows/gradle-spoon-plugin/pull/108) Gradle Configuration Cache

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ buildscript {
1919
}
2020
2121
dependencies {
22-
classpath 'com.jaredsburrows:gradle-spoon-plugin:1.6.0'
22+
classpath 'com.jaredsburrows:gradle-spoon-plugin:1.6.2'
2323
}
2424
}
2525
@@ -48,7 +48,7 @@ buildscript {
4848
}
4949
5050
dependencies {
51-
classpath 'com.jaredsburrows:gradle-spoon-plugin:1.6.1-SNAPSHOT'
51+
classpath 'com.jaredsburrows:gradle-spoon-plugin:1.6.3-SNAPSHOT'
5252
}
5353
}
5454

build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ plugins {
66
id 'org.jetbrains.dokka' version '1.9.20' apply false
77
id 'org.jlleitschuh.gradle.ktlint' version '12.1.1' apply false
88
id 'com.vanniktech.maven.publish' version '0.25.3' apply false
9-
id 'com.gradle.plugin-publish' version '0.21.0' apply false
9+
id 'com.gradle.plugin-publish' version '1.3.0' apply false
1010
id 'com.github.ben-manes.versions' version '0.51.0'
1111
id 'java-gradle-plugin'
1212
id 'java-library'

gradle-spoon-plugin/build.gradle

+4-11
Original file line numberDiff line numberDiff line change
@@ -50,23 +50,16 @@ dependencies {
5050
testImplementation deps.junit
5151
}
5252

53-
pluginBundle {
53+
gradlePlugin {
5454
website = POM_URL
5555
vcsUrl = POM_SCM_URL
56-
description = POM_DESCRIPTION
57-
tags = ['spoon']
58-
59-
plugins {
60-
spoonPlugin {
61-
displayName = POM_NAME
62-
}
63-
}
64-
}
65-
gradlePlugin {
6656
plugins {
6757
spoonPlugin {
6858
id = PLUGIN_NAME
6959
implementationClass = PLUGIN_NAME_CLASS
60+
displayName = POM_NAME
61+
description = POM_DESCRIPTION
62+
tags.set(['spoon'])
7063
}
7164
}
7265
}

gradle.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ SONATYPE_AUTOMATIC_RELEASE=true
33
RELEASE_SIGNING_ENABLED=true
44

55
GROUP=com.jaredsburrows
6-
VERSION_NAME=1.6.1-SNAPSHOT
6+
VERSION_NAME=1.6.3-SNAPSHOT
77

88
POM_INCEPTION_YEAR=2017
99
POM_PACKAGING=jar

0 commit comments

Comments
 (0)