Files
openide/plugins/kotlin/project-wizard/tests/testData/gradleNewProjectWizard/multiModuleProjectKts/app/build.gradle.kts
Frederik Haselmeier 6dd2d96bc3 [kotlin] Fixed spelling mistakes in the new Kotlin Gradle wizard templates found by proofreaders
^KTIJ-31816 fixed


(cherry picked from commit 0ef15e11dcc4a5df2cbbcab192ea905566670d9a)

IJ-CR-147990

GitOrigin-RevId: 48d4cc3854389fe6e4c73fb086790d020799fe04
2024-11-05 17:02:30 +00:00

20 lines
729 B
Kotlin

plugins {
// Apply the shared build logic from a convention plugin.
// The shared code is located in `buildSrc/src/main/kotlin/kotlin-jvm.gradle.kts`.
id("buildsrc.convention.kotlin-jvm")
// Apply the Application plugin to add support for building an executable JVM application.
application
}
dependencies {
// Project "app" depends on project "utils". (Project paths are separated with ":", so ":utils" refers to the top-level "utils" project.)
implementation(project(":utils"))
}
application {
// Define the Fully Qualified Name for the application main class
// (Note that Kotlin compiles `App.kt` to a class with FQN `com.example.app.AppKt`.)
mainClass = "org.testcase.app.AppKt"
}