Skip to content

Commit

Permalink
Migrate desktop 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 865e183 commit 07f435b
Show file tree
Hide file tree
Showing 2 changed files with 44 additions and 44 deletions.
44 changes: 0 additions & 44 deletions desktop/build.gradle

This file was deleted.

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

javafx {
version = "17.0.1"
modules = listOf("javafx.controls", "javafx.media")
}

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

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

implementation("wallets:electrum")
implementation("wallets:bitcoind")

implementation(libs.google.guava)
implementation(libs.google.gson)
implementation(libs.bundles.fontawesomefx)
implementation(libs.bundles.fxmisc.libs)
implementation(libs.typesafe.config)

testImplementation(libs.testfx.junit5)
testImplementation(libs.openjfx.monocle)
}

0 comments on commit 07f435b

Please sign in to comment.