Convert settings.gradle to Kotlin and enable Gradle metadata

Signed-off-by: Harsh Shandilya <me@msfjarvis.dev>
This commit is contained in:
Harsh Shandilya 2020-11-08 14:47:57 +05:30
parent dc12917b66
commit fa9d964a32
No known key found for this signature in database
GPG key ID: 366D7BBAD1031E80
2 changed files with 3 additions and 4 deletions

View file

@ -1,4 +0,0 @@
rootProject.name = "lobste.rs"
include ':app'
include ':lobsters-api'
include ':model'

3
settings.gradle.kts Normal file
View file

@ -0,0 +1,3 @@
rootProject.name = "lobste.rs"
include(":app", ":lobsters-api", ":model")
enableFeaturePreview("GRADLE_METADATA")