Skip to content

Commit 623b947

Browse files
authored
fastutil lib as api dependency (#13)
1 parent 8501a30 commit 623b947

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

.github/workflows/gradle.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@ jobs:
1515
runs-on: ubuntu-latest
1616

1717
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
2121
with:
22-
java-version: '16'
22+
java-version: '17'
2323
distribution: 'adopt'
2424
- name: Clean and Build with Gradle
2525
run: ./gradlew clean build

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,14 +32,14 @@ _Note_: currently the lib contains wrappers not for every primitive map. Feel fr
3232
<dependency>
3333
<groupId>com.trivago</groupId>
3434
<artifactId>fastutil-concurrent-wrapper</artifactId>
35-
<version>0.2.0</version>
35+
<version>0.2.1</version>
3636
</dependency>
3737
```
3838

3939
#### Gradle
4040

4141
```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'
4343
```
4444

4545
## Usage

build.gradle

+4-4
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ allprojects {
1616
}
1717

1818
group 'com.trivago'
19-
version '0.2.1-SNAPSHOT'
19+
version '0.2.1'
2020

2121
mavenPublishing {
2222
pom {
@@ -62,10 +62,10 @@ sourceSets {
6262
}
6363

6464
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'
6666

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'
6969
}
7070

7171
test {
+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
distributionBase=GRADLE_USER_HOME
22
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
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists

0 commit comments

Comments
 (0)