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

Merge pull request #1 from jnizet/fix/plugin-doc

use the correct manifest attribute for plugin class
This commit is contained in:
Cedric Beust 2015-10-06 13:07:48 -07:00
commit 53fedc1414

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")
}
}
}