We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5436f71 commit 16808a3Copy full SHA for 16808a3
README.md
@@ -10,13 +10,13 @@ Add the following dependency to your project:
10
<dependency>
11
<groupId>org.exploit</groupId>
12
<artifactId>signalix</artifactId>
13
- <version>0.1</version>
+ <version>0.1.1</version>
14
</dependency>
15
```
16
17
### Gradle
18
```groovy
19
-implementation("org.exploit:signalix:0.1")
+implementation("org.exploit:signalix:0.1.1")
20
21
22
### Usage
build.gradle
@@ -32,10 +32,14 @@ allprojects {
32
java {
33
withSourcesJar()
34
withJavadocJar()
35
+
36
+ toolchain {
37
+ languageVersion = JavaLanguageVersion.of(17)
38
+ }
39
}
40
41
group = 'org.exploit'
- version = '0.1'
42
+ version = '0.1.1'
43
44
afterEvaluate { p ->
45
publishing {
0 commit comments