sbt-javafx icon indicating copy to clipboard operation
sbt-javafx copied to clipboard

JavaFX plugin for SBT

Results 5 sbt-javafx issues
Sort by recently updated
recently updated
newest added

and class FileAssociation added to associate file extensions to build programm

``` $cat project/plugins.sbt addSbtPlugin("no.vedaadata" %% "sbt-javafx" % "0.7") $cat build.sbt scalaVersion := "2.12.1" lazy val root = (project in file(".")). enablePlugins(no.vedaadata.sbtjavafx.JavaFXPlugin). settings( name := "test-javafx-app" ) $sbt [info] Loading project...

When I add JFX.(whatever) settings in my build.sbt sub-project definition it doesn't have any effect. Here is my sub-project def: lazy val fxBQuote = project.in( file("sub_fxBQuote") ) .settings(jfxSettings: __) .settings(mySettings:...

Hi, Here is a fix I've come up with for issue #12 . I just add another fileset to the ant task for each directory in the `internalDependencyClasspath` SBT key,...

Is it possible to package a multi-project application? My `build.sbt` starts like this ``` scala lazy val root = project.in(file(".")).dependsOn(foo, bar) lazy val foo = project in file("foo") lazy val...