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

Update to new plug-in architecture.

This commit is contained in:
Cedric Beust 2015-11-07 17:55:42 -08:00
parent e66e551c1f
commit 2bc76dbb05
2 changed files with 7 additions and 4 deletions

View file

@ -17,7 +17,7 @@ val project = kotlinProject {
name = "kobalt-line-count"
group = "com.beust.kobalt"
artifactId = name
version = "0.15"
version = "0.16"
dependencies {
// compile("file:" + homeDir("kotlin/kobalt/kobaltBuild/libs/kobalt-0.168.jar"))
@ -26,9 +26,6 @@ val project = kotlinProject {
assemble {
mavenJars {
manifest {
attributes("Kobalt-Plugin-Class", "com.beust.kobalt.plugin.linecount.LineCountPlugin")
}
}
}

View file

@ -0,0 +1,6 @@
<kobalt-plugin>
<name>kobalt-line-count</name>
<plugins>
<class-name>com.beust.kobalt.plugin.linecount.LineCountPlugin</class-name>
</plugins>
</kobalt-plugin>