File tree 3 files changed +7
-6
lines changed
src/test/kotlin/org/gradleweaver/plugins/jlink
3 files changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ allprojects {
17
17
18
18
project(" :samples" ) {
19
19
subprojects {
20
- apply (plugin = " org.gradleweaver.plugins. simple-jlink" )
20
+ apply (plugin = " org.gradleweaver.simple-jlink" )
21
21
}
22
22
}
23
23
Original file line number Diff line number Diff line change @@ -60,10 +60,11 @@ tasks.withType<Test>().configureEach {
60
60
useJUnitPlatform()
61
61
}
62
62
63
- val registeredPlugin = gradlePlugin.plugins.register(" jlink-plugin" ) {
64
- id = " ${project.group} .${project.name} "
63
+ val registeredPlugin = gradlePlugin.plugins.register(" JLinkPlugin" ) {
64
+ id = " org.gradleweaver.simple-jlink"
65
+ displayName = " Simple JLink"
65
66
implementationClass = " org.gradleweaver.plugins.jlink.JLinkPlugin"
66
- description = " A Gradle plugin for handling platform-specific dependencies and releases. "
67
+ description = " Generate native runtime images for your application with the JLink tool "
67
68
}
68
69
69
70
pluginBundle {
@@ -72,7 +73,7 @@ pluginBundle {
72
73
tags = listOf (" jlink" )
73
74
74
75
plugins {
75
- create(" jlink-plugin " ) {
76
+ create(" JLinkPlugin " ) {
76
77
id = registeredPlugin.get().id
77
78
displayName = registeredPlugin.get().displayName
78
79
}
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ abstract class AbstractPluginTest {
26
26
protected fun pluginsBlock () =
27
27
"""
28
28
plugins {
29
- id("org.gradleweaver.plugins. simple-jlink")
29
+ id("org.gradleweaver.simple-jlink")
30
30
}
31
31
""" .trimIndent()
32
32
You can’t perform that action at this time.
0 commit comments