*/
public class App extends Application {
@Override
public void start(Stage stage) throws Exception {
FollowmeView appView = new FollowmeView();
Scene scene = new Scene(appView.getView());
stage.setTitle("${artifactId}.fx v${version}");
final String uri = getClass().getResource("app.css").toExternalForm();
scene.getStylesheets().add(uri);
stage.setScene(scene);
stage.show();