Abend,
nachdem mir schon bei meinen anderen "Problem" geholfen wurde, habe ich jetzt das nächste.
Ich habe mit JavaFX eine kleine Test-Gui erzeugt und möchte diese mittels
Bekomme aber immer die Meldung
Mittels
Zusätzlich habe ich es euch auch wieder in ne ZIP-Datei gepackt.
Vielleicht kann mir ja wer helfen.
nachdem mir schon bei meinen anderen "Problem" geholfen wurde, habe ich jetzt das nächste.
Ich habe mit JavaFX eine kleine Test-Gui erzeugt und möchte diese mittels
java -jar gui-0.1.0-SNAPSHOT.jar
ausführen.Bekomme aber immer die Meldung
no main manifest attribute, in .\gui-0.1.0-SNAPSHOT.jar
Mittels
mvn exec:exec
kann ich die Anwendung ausführen.[CODE lang="xml"]<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.example.calc</groupId>
<artifactId>gui</artifactId>
<version>0.1.0-SNAPSHOT</version>
<packaging>jar</packaging>
<dependencies>
<dependency>
<groupId>org.openjfx</groupId>
<artifactId>javafx-controls</artifactId>
<version>11</version>
</dependency>
<dependency>
<groupId>org.openjfx</groupId>
<artifactId>javafx-fxml</artifactId>
<version>11</version>
</dependency>
<dependency>
<groupId>com.example.calc</groupId>
<artifactId>operator</artifactId>
<version>1.0.0-SNAPSHOT</version>
<type>jar</type>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<configuration>
<release>11</release>
<source>11</source>
<target>11</target>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>1.6.0</version>
<executions>
<execution>
<goals>
<goal>exec</goal>
</goals>
</execution>
</executions>
<configuration>
<skip>false</skip>
<executable>java</executable>
<arguments>
<argument>--module-path</argument> <!-- or -p -->
<modulepath/>
<!-- automatically creates the modulepath using all project dependencies,
also adding the project build directory -->
<argument>--module</argument> <!-- or -m -->
<argument>com.example.calc.gui/com.example.calc.gui.GuiMain</argument>
</arguments>
</configuration>
</plugin>
</plugins>
</build>
</project>
[/CODE]
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.example.calc</groupId>
<artifactId>gui</artifactId>
<version>0.1.0-SNAPSHOT</version>
<packaging>jar</packaging>
<dependencies>
<dependency>
<groupId>org.openjfx</groupId>
<artifactId>javafx-controls</artifactId>
<version>11</version>
</dependency>
<dependency>
<groupId>org.openjfx</groupId>
<artifactId>javafx-fxml</artifactId>
<version>11</version>
</dependency>
<dependency>
<groupId>com.example.calc</groupId>
<artifactId>operator</artifactId>
<version>1.0.0-SNAPSHOT</version>
<type>jar</type>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<configuration>
<release>11</release>
<source>11</source>
<target>11</target>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>1.6.0</version>
<executions>
<execution>
<goals>
<goal>exec</goal>
</goals>
</execution>
</executions>
<configuration>
<skip>false</skip>
<executable>java</executable>
<arguments>
<argument>--module-path</argument> <!-- or -p -->
<modulepath/>
<!-- automatically creates the modulepath using all project dependencies,
also adding the project build directory -->
<argument>--module</argument> <!-- or -m -->
<argument>com.example.calc.gui/com.example.calc.gui.GuiMain</argument>
</arguments>
</configuration>
</plugin>
</plugins>
</build>
</project>
[/CODE]
[CODE lang="java"]package com.example.calc.gui;
import javafx.application.Application;
import javafx.fxml.FXMLLoader;
import javafx.scene.Parent;
import javafx.scene.Scene;
import javafx.stage.Stage;
public class GuiMain extends Application {
public static void main(String[] args) {
Application.launch(args);
}
@Override
public void start(Stage primaryStage) throws Exception {
primaryStage.setTitle("Calculator - FirstGUI");
Parent root = FXMLLoader.load(getClass().getResource("/calculator.fxml"));
Scene scene = new Scene(root, 400, 200);
primaryStage.setScene(scene);
primaryStage.show();
}
}
[/CODE]
import javafx.application.Application;
import javafx.fxml.FXMLLoader;
import javafx.scene.Parent;
import javafx.scene.Scene;
import javafx.stage.Stage;
public class GuiMain extends Application {
public static void main(String[] args) {
Application.launch(args);
}
@Override
public void start(Stage primaryStage) throws Exception {
primaryStage.setTitle("Calculator - FirstGUI");
Parent root = FXMLLoader.load(getClass().getResource("/calculator.fxml"));
Scene scene = new Scene(root, 400, 200);
primaryStage.setScene(scene);
primaryStage.show();
}
}
[/CODE]
[CODE lang="java"]module com.example.calc.gui {
requires javafx.fxml;
requires javafx.controls;
requires com.example.calc.operator;
exports com.example.calc.gui to javafx.graphics;
}
[/CODE]
requires javafx.fxml;
requires javafx.controls;
requires com.example.calc.operator;
exports com.example.calc.gui to javafx.graphics;
}
[/CODE]
Zusätzlich habe ich es euch auch wieder in ne ZIP-Datei gepackt.
Vielleicht kann mir ja wer helfen.