You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+30-42Lines changed: 30 additions & 42 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -25,6 +25,36 @@ This functionality is comparable to Linux like platforms.
25
25
JEF allows you to create pure java based system only in Java or compile you applications
26
26
to small(10+ megabytes) pure native binaries(C++ like ) for 64-bits platforms without any code modification.
27
27
28
+
Important Note
29
+
===================
30
+
Project moved (temporary or maybe permanently to [Quarkus repository](https://github.com/quarkiverse/quarkus-jef) and can be used as part of [Quarkus platform](https://www.quarkus.io)
31
+
32
+
Integration examples available [here](https://github.com/alexeysharandin/quarkus-jef-example)
33
+
34
+
If you want to use library only on API level without Quarkus, you can include API libraries directly from maven central:
35
+
```
36
+
<dependency>
37
+
<groupId>io.quarkiverse.jef</groupId>
38
+
<artifactId>linux-core</artifactId>
39
+
<version>${JEF_VERSION}</version>
40
+
</dependency>
41
+
<dependency>
42
+
<groupId>io.quarkiverse.jef</groupId>
43
+
<artifactId>linux-native-core</artifactId>
44
+
<version>${JEF_VERSION}</version>
45
+
</dependency>
46
+
<dependency>
47
+
<groupId>io.quarkiverse.jef</groupId>
48
+
<artifactId>mcu-core</artifactId>
49
+
<version>${JEF_VERSION}</version>
50
+
</dependency>
51
+
<dependency>
52
+
<groupId>io.quarkiverse.jef</groupId>
53
+
<artifactId>device-library</artifactId>
54
+
<version>${JEF_VERSION}</version>
55
+
</dependency>
56
+
```
57
+
28
58
Supported Platforms
29
59
===================
30
60
JEF will build on most linux-like platforms with a reasonable set of GNU tools and a JDK.
@@ -54,49 +84,7 @@ Project Modules
54
84
***device-library** - Some 'drivers' implementation for devices
0 commit comments