1
0
Fork 0
mirror of https://github.com/ethauvin/kobalt-doc.git synced 2025-04-25 12:07:10 -07:00

use the correct manifest attribute for plugin class

This commit is contained in:
jbnizet 2015-10-06 21:50:03 +02:00
parent aad8a8931b
commit bfcc000c8d

View file

@ -107,7 +107,7 @@ Next, we want the manifest of our jar file to point to our main Kobalt plug-in c
val packProject = packaging(project) {
jar {
manifest {
attributes("Main-Class", "com.beust.kobalt.plugin.linecount.Main")
attributes("Kobalt-Plugin-Class", "com.beust.kobalt.plugin.linecount.Main")
}
}
}