File tree Expand file tree Collapse file tree 5 files changed +12
-15
lines changed
Expand file tree Collapse file tree 5 files changed +12
-15
lines changed Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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'
Original file line number Diff line number Diff 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}
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ SONATYPE_AUTOMATIC_RELEASE=true
33RELEASE_SIGNING_ENABLED =true
44
55GROUP =com.jaredsburrows
6- VERSION_NAME =1.6.1 -SNAPSHOT
6+ VERSION_NAME =1.6.3 -SNAPSHOT
77
88POM_INCEPTION_YEAR =2017
99POM_PACKAGING =jar
You can’t perform that action at this time.
0 commit comments