We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 70898ea commit 5cf05feCopy full SHA for 5cf05fe
1 file changed
README.md
@@ -7,7 +7,16 @@ For the native access this project uses [bridj](https://github.com/nativelibs4ja
7
8
## Compatibility
9
This library has support for java 8 and java 11 too.<br>
10
-<i>Note: if you use java 11 you have to pass this VM argument: `--add-exports javafx.graphics/com.sun.glass.ui=nativejavafx.taskbar`</i>
+
11
+##### Using with java 11
12
+If you use java 11 you have to pass this VM argument: `--add-exports javafx.graphics/com.sun.glass.ui=nativejavafx.taskbar`.
13
+Also, you have to mention the `nativejavafx.taskbar` module in your `module-info.java` file:
14
+```java
15
+module YourModule {
16
+ ...
17
+ requires nativejavafx.taskbar;
18
+}
19
+```
20
21
## Source code
22
This project has two important branches:
0 commit comments