Skip to content

Commit

Permalink
Migrate seednode to kotlin-dsl
Browse files Browse the repository at this point in the history
  • Loading branch information
alvasw committed Nov 24, 2023
1 parent 6f6c344 commit a41d2ce
Show file tree
Hide file tree
Showing 2 changed files with 46 additions and 30 deletions.
30 changes: 0 additions & 30 deletions seed_node_app/build.gradle

This file was deleted.

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

application {
mainClass.set("bisq.seed_node.SeedNodeApp")
}

dependencies {
implementation(project(":persistence"))
implementation(project(":security"))
implementation(project(":bonded_roles"))
implementation(project(":application"))
implementation(project(":identity"))

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

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

tasks {
distZip {
enabled = false
}

distTar {
enabled = false
}

shadowDistZip {
enabled = false
}

shadowDistTar {
enabled = false
}

shadowJar {
enabled = false
}
}

0 comments on commit a41d2ce

Please sign in to comment.