1
0
Fork 0
mirror of https://github.com/ethauvin/kobalt.git synced 2025-04-27 00:38:11 -07:00
kobalt/src/main/resources/META-INF/kobalt-core-plugin.xml
Cedric Beust 643c85f1a4 Remove the Android plug-in from the core.
It's now in its own project.
2015-12-26 00:28:50 +04:00

25 lines
No EOL
1.4 KiB
XML

<kobalt-plugin>
<name>kobalt</name>
<factory-class-name>com.beust.kobalt.internal.GuiceFactory</factory-class-name>
<plugin-actors>
<!-- Classes within this tag are instantiated and the introspected by Kobalt. Whenever they -->
<!-- are found to implement one of IPluginActor's interfaces, they are added as such -->
<class-name>com.beust.kobalt.plugin.java.JavaPlugin</class-name>
<class-name>com.beust.kobalt.plugin.application.ApplicationPlugin</class-name>
<class-name>com.beust.kobalt.plugin.KobaltPlugin</class-name>
<class-name>com.beust.kobalt.plugin.kotlin.KotlinPlugin</class-name>
<class-name>com.beust.kobalt.plugin.packaging.PackagingPlugin</class-name>
<class-name>com.beust.kobalt.plugin.publish.PublishPlugin</class-name>
<class-name>com.beust.kobalt.plugin.apt.AptPlugin</class-name>
<!-- These classes manage -init for Java and Kotlin -->
<class-name>com.beust.kobalt.app.java.JavaBuildGenerator</class-name>
<class-name>com.beust.kobalt.app.kotlin.KotlinBuildGenerator</class-name>
<!-- Test runners -->
<class-name>com.beust.kobalt.internal.JUnitRunner</class-name>
<class-name>com.beust.kobalt.internal.TestNgRunner</class-name>
<class-name>com.beust.kobalt.internal.SpekRunner</class-name>
</plugin-actors>
</kobalt-plugin>