Sign in
pigweed
/
third_party
/
github
/
google
/
ksp
/
refs/heads/upstream/1.0.9-release-backup
/
.
/
examples
/
playground
/
build.gradle.kts
blob: 19af4449419d95f9e21046440849d8b6f17cda8f [
file
] [
log
] [
blame
] [
edit
]
plugins
{
kotlin
(
"jvm"
)
}
subprojects
{
repositories
{
mavenCentral
()
}
tasks
.
withType
<
JavaCompile
>().
configureEach
{
sourceCompatibility
=
JavaVersion
.
VERSION_1_8
.
toString
()
targetCompatibility
=
JavaVersion
.
VERSION_1_8
.
toString
()
}
}