File tree 4 files changed +11
-11
lines changed
4 files changed +11
-11
lines changed Original file line number Diff line number Diff line change @@ -15,11 +15,11 @@ jobs:
15
15
runs-on : ubuntu-latest
16
16
17
17
steps :
18
- - uses : actions/checkout@v2
19
- - name : Set up JDK 16
20
- uses : actions/setup-java@v2
18
+ - uses : actions/checkout@v3
19
+ - name : Set up JDK 17
20
+ uses : actions/setup-java@v3
21
21
with :
22
- java-version : ' 16 '
22
+ java-version : ' 17 '
23
23
distribution : ' adopt'
24
24
- name : Clean and Build with Gradle
25
25
run : ./gradlew clean build
Original file line number Diff line number Diff line change @@ -32,14 +32,14 @@ _Note_: currently the lib contains wrappers not for every primitive map. Feel fr
32
32
<dependency >
33
33
<groupId >com.trivago</groupId >
34
34
<artifactId >fastutil-concurrent-wrapper</artifactId >
35
- <version >0.2.0 </version >
35
+ <version >0.2.1 </version >
36
36
</dependency >
37
37
```
38
38
39
39
#### Gradle
40
40
41
41
``` groovy
42
- implementation group: 'com.trivago', name: 'fastutil-concurrent-wrapper', version: '0.2.0 '
42
+ implementation group: 'com.trivago', name: 'fastutil-concurrent-wrapper', version: '0.2.1 '
43
43
```
44
44
45
45
## Usage
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ allprojects {
16
16
}
17
17
18
18
group ' com.trivago'
19
- version ' 0.2.1-SNAPSHOT '
19
+ version ' 0.2.1'
20
20
21
21
mavenPublishing {
22
22
pom {
@@ -62,10 +62,10 @@ sourceSets {
62
62
}
63
63
64
64
dependencies {
65
- implementation group : ' it.unimi.dsi' , name : ' fastutil' , version : ' 8.5.9'
65
+ api group : ' it.unimi.dsi' , name : ' fastutil' , version : ' 8.5.9'
66
66
67
- testImplementation ' org.junit.jupiter:junit-jupiter-api:5.8.2 '
68
- testRuntimeOnly ' org.junit.jupiter:junit-jupiter-engine:5.8.2 '
67
+ testImplementation ' org.junit.jupiter:junit-jupiter-api:5.9.0 '
68
+ testRuntimeOnly ' org.junit.jupiter:junit-jupiter-engine:5.9.0 '
69
69
}
70
70
71
71
test {
Original file line number Diff line number Diff line change 1
1
distributionBase =GRADLE_USER_HOME
2
2
distributionPath =wrapper/dists
3
- distributionUrl =https\://services.gradle.org/distributions/gradle-7.1 -bin.zip
3
+ distributionUrl =https\://services.gradle.org/distributions/gradle-7.6 -bin.zip
4
4
zipStoreBase =GRADLE_USER_HOME
5
5
zipStorePath =wrapper/dists
You can’t perform that action at this time.
0 commit comments