Skip to content

Commit

Permalink
Set up common repositories for subprojects (#22)
Browse files Browse the repository at this point in the history
  • Loading branch information
franciscodr authored May 3, 2023
1 parent 746a44b commit d36f9d1
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 10 deletions.
4 changes: 0 additions & 4 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,6 @@ import org.jetbrains.dokka.gradle.DokkaTask

version = "0.0.1-SNAPSHOT"

repositories {
mavenCentral()
}

plugins {
base
alias(libs.plugins.kotlin.multiplatform)
Expand Down
5 changes: 0 additions & 5 deletions scala/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,6 @@ plugins {
alias(libs.plugins.scala.multiversion)
}

repositories {
mavenCentral()
maven(url = "https://oss.sonatype.org/content/repositories/snapshots/")
}

dependencies {
implementation(libs.ciris.core)
implementation(libs.ciris.refined)
Expand Down
10 changes: 9 additions & 1 deletion settings.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,10 +1,18 @@
dependencyResolutionManagement {
@Suppress("UnstableApiUsage")
repositories {
mavenCentral()
maven(url = "https://oss.sonatype.org/content/repositories/snapshots/")
}
}

pluginManagement {
repositories {
mavenCentral()
gradlePluginPortal()
}

}

rootProject.name = "langchain4k"
include("nodejs-commandexecutor")
include("example")
Expand Down

0 comments on commit d36f9d1

Please sign in to comment.