I am trying to compile a jar from the master branch use maven but without success. Would be great if this can be supported, because what I want is just to have a fresh jar, and to setup a IDE with the entire project seems too much time to me. For now by changing the pom.xml
I changed two dependencies to refer to the local jar file:
Then I run
mvn clean dependency:copy-dependencies package
Then I can get the jar file, but the problem the thunderstorm is not working correctly, complaining that "class not found", for example, if I click camera setup:
java.lang.NoClassDefFoundError: Could not initialize class cz.cuni.lf1.lge.ThunderSTORM.UI.HelpButton
I am trying to compile a jar from the master branch use maven but without success. Would be great if this can be supported, because what I want is just to have a fresh jar, and to setup a IDE with the entire project seems too much time to me. For now by changing the pom.xml I changed two dependencies to refer to the local jar file:
and add an extra dependency:
not sure if it's necessary, but I also run the following two lines:
Then I run
mvn clean dependency:copy-dependencies package
Then I can get the jar file, but the problem the thunderstorm is not working correctly, complaining that "class not found", for example, if I click camera setup:
java.lang.NoClassDefFoundError: Could not initialize class cz.cuni.lf1.lge.ThunderSTORM.UI.HelpButton
So, how can I make it work? Thanks.