Skip to content

Commit

Permalink
shadowJar generates multi-platform jar for ide
Browse files Browse the repository at this point in the history
  • Loading branch information
gciatto committed Oct 22, 2020
1 parent bbc9aa4 commit 4ee3ba7
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions ide/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,18 @@ application {
mainClassName = "it.unibo.tuprolog.ui.gui.Main"
}

val linuxOnly by configurations.creating { isTransitive = true }

dependencies {
api(project(":solve-classic"))
api(project(":parser-theory"))
api(kotlin("stdlib-jdk8"))
api(Libs.richtextfx)

runtimeOnly("${Libs.javafx_graphics}:win")
runtimeOnly("${Libs.javafx_graphics}:linux")
runtimeOnly("${Libs.javafx_graphics}:mac")

testImplementation(kotlin("test-junit"))
}

Expand Down

0 comments on commit 4ee3ba7

Please sign in to comment.