71: Follow up on Gradle build rewrite r=msfjarvis a=msfjarvis

Adds back a dependency that was accidentally removed, and converts `settings.gradle` to Kotlin

bors r+

Co-authored-by: Harsh Shandilya <me@msfjarvis.dev>
This commit is contained in:
bors[bot] 2020-11-08 09:19:20 +00:00 committed by GitHub
commit 8729ad9cd1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 4 deletions

View file

@ -8,6 +8,7 @@ plugins {
dependencies { dependencies {
implementation(project(":model")) implementation(project(":model"))
implementation(Dependencies.Kotlin.Serialization.json) implementation(Dependencies.Kotlin.Serialization.json)
implementation(Dependencies.ThirdParty.Retrofit.lib)
implementation(Dependencies.ThirdParty.retrofitSerialization) implementation(Dependencies.ThirdParty.retrofitSerialization)
testImplementation(Dependencies.Testing.junit) testImplementation(Dependencies.Testing.junit)
testImplementation(Dependencies.Kotlin.Coroutines.core) testImplementation(Dependencies.Kotlin.Coroutines.core)

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")