Skip to content

Commit

Permalink
Migrate trade 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 f0d1a78 commit d1ea95c
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 26 deletions.
26 changes: 0 additions & 26 deletions trade/build.gradle

This file was deleted.

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

dependencies {
implementation(project(":persistence"))
implementation(project(":i18n"))
implementation(project(":security"))
implementation(project(":identity"))
implementation(project(":user"))
implementation(project(":account"))
implementation(project(":offer"))
implementation(project(":contract"))
implementation(project(":support"))
implementation(project(":chat"))
implementation(project(":settings"))
implementation(project(":presentation"))
implementation(project(":bonded_roles"))

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

implementation(libs.google.guava)
implementation(libs.typesafe.config)
}

0 comments on commit d1ea95c

Please sign in to comment.