Skip to content

Commit

Permalink
Migrate chat module to kotlin-dsl
Browse files Browse the repository at this point in the history
  • Loading branch information
alvasw committed Nov 17, 2023
1 parent b9f9e3a commit 7404eae
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 28 deletions.
28 changes: 0 additions & 28 deletions chat/build.gradle

This file was deleted.

30 changes: 30 additions & 0 deletions chat/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
plugins {
id("bisq.java-library")
id("bisq.protobuf")
}

repositories {
mavenCentral()
maven {
url = uri("https://jitpack.io")
}
}

dependencies {
implementation(project(":i18n"))
implementation(project(":persistence"))
implementation(project(":security"))
implementation(project(":identity"))
implementation(project(":user"))
implementation(project(":offer"))
implementation(project(":settings"))
implementation(project(":presentation"))

implementation("network:network")
implementation("network:network-identity")

implementation(libs.chimp.jsocks)
implementation(libs.google.gson)
implementation(libs.google.guava)
implementation(libs.typesafe.config)
}

0 comments on commit 7404eae

Please sign in to comment.