Pular para o conteúdo principal

Postagens

Mostrando postagens com o rótulo jboss modules

JBoss Modules with JavaFX

Anton Arhipov made a great post showing a Hello World app with JBoss module s. In his post comments, Ted Won created a "mavenized" version of his hello world. Since my friend Filipe Portes already made a great work by integrating JavaFX with OSGI , I decided to try jboss-modules  In this post I simply used Ted's project with JavaFX(with some modifications) and it worked great!   First obvious attempt:  Clone Ted's project:  git clone git@github.com:tedwon/hello-jboss-modules.git Import his maven project on an IDE. I used Eclipe ( File -> Import -> Existing Maven Project ) Let's develop now. Modify the Hello class to be a JavaFX application class: Now build the project. Go back to the   hello  directory in the command line and run mvn clean package Once the project is built, copy the new hello jar to the modules directory: cp hello/target/hello.jar  mods/org/jbugkorea/hello/main/   Cool, but if...