Sign in
pigweed
/
third_party
/
github
/
google
/
ksp
/
4e1a4364c9bd48264cf3476dbe435e2d5123613a
/
.
/
examples
/
hello-world
/
app
/
build.gradle.kts
blob: db43f69fec1b8677a8f6fbadcc0fb9272aa265c0 [
file
]
plugins
{
kotlin
(
"jvm"
)
application
id
(
"com.google.devtools.ksp"
)
version
"2.3.5"
}
application
{
mainClass
.
set
(
"MainKt"
)
}
repositories
{
mavenCentral
()
}
dependencies
{
implementation
(
project
(
":annotations"
))
ksp
(
project
(
":processor"
))
}