Skip to content

Commit 16808a3

Browse files
committed
JDK 17 support
1 parent 5436f71 commit 16808a3

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,13 @@ Add the following dependency to your project:
1010
<dependency>
1111
<groupId>org.exploit</groupId>
1212
<artifactId>signalix</artifactId>
13-
<version>0.1</version>
13+
<version>0.1.1</version>
1414
</dependency>
1515
```
1616

1717
### Gradle
1818
```groovy
19-
implementation("org.exploit:signalix:0.1")
19+
implementation("org.exploit:signalix:0.1.1")
2020
```
2121

2222
### Usage

build.gradle

+5-1
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,14 @@ allprojects {
3232
java {
3333
withSourcesJar()
3434
withJavadocJar()
35+
36+
toolchain {
37+
languageVersion = JavaLanguageVersion.of(17)
38+
}
3539
}
3640

3741
group = 'org.exploit'
38-
version = '0.1'
42+
version = '0.1.1'
3943

4044
afterEvaluate { p ->
4145
publishing {

0 commit comments

Comments
 (0)