Skip to content

Commit

Permalink
GH-1899 Fix backend dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
dzikoysk committed Aug 7, 2023
1 parent 51daaef commit 77903b3
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion reposilite-backend/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ import com.github.jengelman.gradle.plugins.shadow.tasks.ShadowJar
import io.gitlab.arturbosch.detekt.Detekt
import io.gitlab.arturbosch.detekt.DetektCreateBaselineTask
import org.apache.tools.ant.filters.ReplaceTokens
import org.jetbrains.kotlin.gradle.tasks.KaptGenerateStubs

plugins {
jacoco
Expand Down Expand Up @@ -104,7 +105,7 @@ dependencies {
implementation("com.google.http-client:google-http-client:$httpClient") { exclude(group = "commons-codec", module = "commons-codec")}
testImplementation("com.google.http-client:google-http-client-jackson2:$httpClient")

val commonsCoded = "1.16"
val commonsCoded = "1.16.0"
api("commons-codec:commons-codec:$commonsCoded")

val jansi = "2.4.0"
Expand Down Expand Up @@ -188,6 +189,7 @@ tasks {
compileKotlin { dependsOn("generateKotlin") }
sourcesJar { dependsOn("generateKotlin") }
kotlinSourcesJar { dependsOn("generateKotlin") }
withType<KaptGenerateStubs> { dependsOn("generateKotlin") }
}

kotlin.sourceSets.main {
Expand Down

0 comments on commit 77903b3

Please sign in to comment.