Commit 14939af 1 parent 96dc547 commit 14939af Copy full SHA for 14939af
File tree 5 files changed +12
-15
lines changed
5 files changed +12
-15
lines changed Original file line number Diff line number Diff line change 1
1
# Change Log
2
2
3
+ ## Version 1.6.2 (2024-10-11)
4
+
5
+ * [ #301 ] ( https://github.com/jaredsburrows/gradle-spoon-plugin/pull/301 ) Fix arparser issue
6
+
3
7
## Version 1.6.0 (2022-04-27)
4
8
5
9
* [ #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 {
19
19
}
20
20
21
21
dependencies {
22
- classpath 'com.jaredsburrows:gradle-spoon-plugin:1.6.0 '
22
+ classpath 'com.jaredsburrows:gradle-spoon-plugin:1.6.2 '
23
23
}
24
24
}
25
25
@@ -48,7 +48,7 @@ buildscript {
48
48
}
49
49
50
50
dependencies {
51
- classpath 'com.jaredsburrows:gradle-spoon-plugin:1.6.1 -SNAPSHOT'
51
+ classpath 'com.jaredsburrows:gradle-spoon-plugin:1.6.3 -SNAPSHOT'
52
52
}
53
53
}
54
54
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ plugins {
6
6
id ' org.jetbrains.dokka' version ' 1.9.20' apply false
7
7
id ' org.jlleitschuh.gradle.ktlint' version ' 12.1.1' apply false
8
8
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
10
10
id ' com.github.ben-manes.versions' version ' 0.51.0'
11
11
id ' java-gradle-plugin'
12
12
id ' java-library'
Original file line number Diff line number Diff line change @@ -50,23 +50,16 @@ dependencies {
50
50
testImplementation deps. junit
51
51
}
52
52
53
- pluginBundle {
53
+ gradlePlugin {
54
54
website = POM_URL
55
55
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 {
66
56
plugins {
67
57
spoonPlugin {
68
58
id = PLUGIN_NAME
69
59
implementationClass = PLUGIN_NAME_CLASS
60
+ displayName = POM_NAME
61
+ description = POM_DESCRIPTION
62
+ tags. set([' spoon' ])
70
63
}
71
64
}
72
65
}
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ SONATYPE_AUTOMATIC_RELEASE=true
3
3
RELEASE_SIGNING_ENABLED =true
4
4
5
5
GROUP =com.jaredsburrows
6
- VERSION_NAME =1.6.1 -SNAPSHOT
6
+ VERSION_NAME =1.6.3 -SNAPSHOT
7
7
8
8
POM_INCEPTION_YEAR =2017
9
9
POM_PACKAGING =jar
You can’t perform that action at this time.
0 commit comments