mirror of
https://github.com/JakeWharton/mosaic.git
synced 2025-11-03 22:08:43 +08:00
14 lines
476 B
Groovy
14 lines
476 B
Groovy
import org.jetbrains.kotlin.gradle.plugin.KotlinPluginKt
|
|
|
|
apply plugin: 'org.jetbrains.kotlin.jvm'
|
|
apply plugin: 'application'
|
|
|
|
mainClassName = 'example.JestKt'
|
|
|
|
dependencies {
|
|
// Normally you would apply the Mosaic Gradle plugin and not need these two lines. However, we
|
|
// build the examples against the in-development version which is why these are here.
|
|
implementation project(':mosaic')
|
|
add(KotlinPluginKt.PLUGIN_CLASSPATH_CONFIGURATION_NAME, deps.composeCompiler)
|
|
}
|