前提・実現したいこと
Eclipseに導入したMavenでopenjfxが利用できる環境を構築したい。
発生している問題・エラーメッセージ
Mavenで「javafx-controls:15」を追加し、テスト用のコードを実行したところ以下のエラーが発生した。
エラー: JavaFXランタイム・コンポーネントが不足しており、このアプリケーションの実行に必要です
Mavenのpomファイル
xml
1<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 https://maven.apache.org/xsd/maven-4.0.0.xsd"> 2 <modelVersion>4.0.0</modelVersion> 3 <groupId>DBTest</groupId> 4 <artifactId>DBTest</artifactId> 5 <version>0.0.1-SNAPSHOT</version> 6 <build> 7 <sourceDirectory>src</sourceDirectory> 8 <plugins> 9 <plugin> 10 <artifactId>maven-compiler-plugin</artifactId> 11 <version>3.8.1</version> 12 <configuration> 13 <release>15</release> 14 </configuration> 15 </plugin> 16 </plugins> 17 </build> 18 <dependencies> 19 <dependency> 20 <groupId>org.openjfx</groupId> 21 <artifactId>javafx-controls</artifactId> 22 <version>15</version> 23 </dependency> 24 </dependencies> 25</project>
試したこと
同様の事象が発生している先駆者の記事を参考にEclipseのVM引数に以下の形式でクラスパスを追加したが、フォルダ名が原因で「java.lang.IllegalArgumentException:」となった。
--module-path "C:\Users***.m2\repository\org\openjfx\javafx-graphics\15" --add-modules javafx.controls,javafx.fxml
異なるバージョンのopenjfxで試してもjavafx-controlsが見つからないというエラーが発生する。
疑問
maven ローカルリポジトリ内にはlibフォルダがなく、jarファイルが一か所にまとまっていないので指定する箇所として不適切なのかもしれない。
C:. ├─javafx │ └─15 │ javafx-15.pom │ javafx-15.pom.sha1 │ _remote.repositories │ ├─javafx-base │ └─15 │ javafx-base-15-sources.jar │ javafx-base-15-sources.jar.sha1 │ javafx-base-15-win.jar │ javafx-base-15-win.jar.sha1 │ javafx-base-15.jar │ javafx-base-15.jar.sha1 │ javafx-base-15.pom │ javafx-base-15.pom.sha1 │ m2e-lastUpdated.properties │ _remote.repositories │ ├─javafx-controls │ └─15 │ javafx-controls-15-sources.jar │ javafx-controls-15-sources.jar.sha1 │ javafx-controls-15-win.jar │ javafx-controls-15-win.jar.sha1 │ javafx-controls-15.jar │ javafx-controls-15.jar.sha1 │ javafx-controls-15.pom │ javafx-controls-15.pom.sha1 │ m2e-lastUpdated.properties │ _remote.repositories │ └─javafx-graphics └─15 javafx-graphics-15-sources.jar javafx-graphics-15-sources.jar.sha1 javafx-graphics-15-win.jar javafx-graphics-15-win.jar.sha1 javafx-graphics-15.jar javafx-graphics-15.jar.sha1 javafx-graphics-15.pom javafx-graphics-15.pom.sha1 m2e-lastUpdated.properties _remote.repositories
備考
ビルドに関する理解がないので原因の切り分けができません。助言お願いします。
環境情報
windows 10
Eclipse IDE for Enterprise Java Developers(Version: 2020-12 (4.18.0))
openjdk version "15.0.1" 2020-10-20
Maven 3.6.3
javafx-controls:15
あなたの回答
tips
プレビュー