Sign in
pigweed
/
third_party
/
github
/
google
/
ksp
/
2c2fc21a0c57682a9042cb0eacbd7ccca66e65a6
/
.
/
examples
/
hello-world
/
build.gradle.kts
blob: 72c43d1c72deef71367ea4f806e754107a0686e9 [
file
]
plugins
{
kotlin
(
"jvm"
)
version
"2.3.0"
apply
false
}
buildscript
{
dependencies
{
classpath
(
kotlin
(
"gradle-plugin"
,
version
=
"2.3.0"
))
}
}
group
=
"com.example"
version
=
"1.0-SNAPSHOT"
tasks
.
register
<
GradleBuild
>(
"run"
)
{
tasks
.
add
(
":app:run"
)
}