Skip to content

Commit

Permalink
Add the dependency on okio-extras
Browse files Browse the repository at this point in the history
  • Loading branch information
0x6675636b796f75676974687562 committed Feb 22, 2023
1 parent 866a142 commit 6a611b8
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions fixpatches/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,26 @@ plugins {
`maven-publish`
}

repositories {
mavenCentral()
maven {
name = "saveourtool/okio-extras"
url = uri("https://maven.pkg.github.com/saveourtool/okio-extras")
credentials {
username = project.findProperty("gprUser") as String? ?: System.getenv("GITHUB_ACTOR")
password = project.findProperty("gprKey") as String? ?: System.getenv("GITHUB_TOKEN")
}
}
}

kotlin {
jvm()

sourceSets {
val commonMain by getting {
dependencies {
api(libs.okio)
implementation(libs.okio.extras)
implementation(libs.kotlinx.serialization.json)
implementation(libs.sarif4k)
implementation(libs.multiplatform.diff)
Expand Down

0 comments on commit 6a611b8

Please sign in to comment.