Skip to content
This repository has been archived by the owner on Sep 2, 2024. It is now read-only.

Commit

Permalink
java 21
Browse files Browse the repository at this point in the history
  • Loading branch information
nothub committed Sep 2, 2024
1 parent 2d70e24 commit d669e11
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/workflow.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: 'ubuntu-latest'
strategy:
matrix:
java: [ 8, 11, 17 ]
java: [ 8, 11, 17, 21 ]
fail-fast: true
steps:
- name: 'Claim the land'
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[![maven central](https://maven-badges.herokuapp.com/maven-central/lol.hub/TinyEventBus/badge.svg)](https://search.maven.org/artifact/lol.hub/TinyEventBus)

Tiny and fast pubsub implementation with subscriber priorities and event canceling for Java 8, 11, 17 and 21.
Tiny and fast pubsub implementation with subscriber priorities and event canceling for Java.

---

Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ dependencies {
}

java {
toolchain.languageVersion = JavaLanguageVersion.of(17)
toolchain.languageVersion = JavaLanguageVersion.of(21)
withJavadocJar()
withSourcesJar()
}
Expand All @@ -66,7 +66,7 @@ publishing {
from components.java
pom {
name = project.name
description = 'Tiny and fast pubsub implementation with subscriber priorities and event canceling for Java 8, 11 and 17.'
description = 'Tiny and fast pubsub implementation with subscriber priorities and event canceling for Java.'
licenses {
license {
name = 'MIT License'
Expand Down

0 comments on commit d669e11

Please sign in to comment.