Skip to content

Commit

Permalink
Updated README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
yoep committed Dec 21, 2023
1 parent 8a26298 commit 08552bd
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,16 @@ loading & managing JavaFX views in Spring.

The library is available in the maven central repository and can be used by adding:

_Spring Boot 3.X_
```xml
<dependency>
<groupId>com.github.yoep</groupId>
<artifactId>spring-boot-starter-javafx</artifactId>
<version>2.0.0</version>
</dependency>
```

_Spring Boot 2.X_
```xml
<dependency>
<groupId>com.github.yoep</groupId>
Expand All @@ -16,6 +26,22 @@ The library is available in the maven central repository and can be used by addi
</dependency>
```

## Requirements

### Version 1.0.0+

This is the legacy version of the library which requires Spring Boot 2+ and Java 8+.

- Spring Boot 2+
- Java 8+

### Version 2.0.0+

This is the new major version of the library which requires Spring Boot 3+ and Java 17+.

- Spring Boot 3+
- Java 17+

## Usage

Create a class which extends `SpringJavaFXApplication` and launch the JavaFX application from this class.
Expand Down

0 comments on commit 08552bd

Please sign in to comment.