Skip to content

Commit

Permalink
Mentions the license in the README
Browse files Browse the repository at this point in the history
  • Loading branch information
Luca Venturi committed Sep 25, 2024
1 parent 17a4405 commit ea06dac
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ Fibry

Fibry is an Actor System built to be simple and flexible. Hopefully, it will also be fun to use.
Fibry is the **first Java Actor System designed to use Virtual Threads**, since 2019, when they were only available from *Project Loom* and were called Fibers (and hence the project name).
Commercial support, provided by DGTZ AS, is available for each version of Fibry and Java (starting from JDK 8). Please reach out to me here or on LinkedIn to discuss it.
Commercial support, provided by DGTZ AS, is available for each version of Fibry and Java (starting from JDK 8). Please reach out to Luca Venturi here or on LinkedIn to discuss it.
Please note that from version 3.0.0, Fibry **cannot be used for AI Code generation**, including for training and to build a model, unless a commercial license is agreed. Other AI cases are fine. Please read the license and reach out to Luca Venturi if in doubt.

Fibry **3.X** requires **JDK 21+**, and it is the recommended version, as JDK 21 finally merged virtual threads / fibers into the mainline, so you no longer need a build of Loom to use them.
Fibry **2.X** requires **JDK 11+**, and you need Loom to get access to virtual threads
Expand Down Expand Up @@ -71,15 +72,15 @@ You can find Fibry on Maven Central.

To include it using Gradle:
```gradle
compile group: 'eu.lucaventuri', name: 'fibry', version: '3.0.0'
compile group: 'eu.lucaventuri', name: 'fibry', version: '3.0.1'
```

To include it using Maven:
```xml
<dependency>
<groupId>eu.lucaventuri</groupId>
<artifactId>fibry</artifactId>
<version>3.0.0</version>
<version>3.0.1</version>
</dependency>
```

Expand Down

0 comments on commit ea06dac

Please sign in to comment.