Skip to content

Commit

Permalink
Fix CI wrt master/3.0 of Guava module
Browse files Browse the repository at this point in the history
  • Loading branch information
cowtowncoder committed Apr 29, 2024
1 parent 4165196 commit b00b8a6
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@ jobs:
fail-fast: false
matrix:
java_version: ['8', '11', '17', '21']
guava_version: ['25.1-jre']
guava_version: ['33.1.0-jre']
# Include additional permutations for JDK 8
include:
- java_version: '8'
guava_version: '20.0'
guava_version: '25.1-jre'
- java_version: '8'
guava_version: '33.1.0-jre'
env:
Expand Down
3 changes: 2 additions & 1 deletion guava/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ To use module on Maven-based projects, use following dependency:
<dependency>
<groupId>com.fasterxml.jackson.datatype</groupId>
<artifactId>jackson-datatype-guava</artifactId>
<version>2.17.0</version>
<version>3.0.0-SNAPSHOT</version>
</dependency>
```

Expand All @@ -28,6 +28,7 @@ Following table shows the tested working ranges for recent module versions.

| Module version | Min Guava | Default Guava | Max Guava |
| -------------- | --------- | ------------- | --------- |
| 3.0 | 25.1-jre | 25.1-jre | 33.1.0-jre|
| 2.18 | 20.0 | 25.1-jre | 33.1.0-jre|
| 2.17 | 20.0 | 25.1-jre | 33.1.0-jre|
| 2.16 | 20.0 | 25.1-jre | 33.1.0-jre|
Expand Down
4 changes: 2 additions & 2 deletions guava/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ Guava (http://code.google.com/p/guava-libraries/) types (currently mostly just c
</contributors>

<properties>
<!-- In Jackson 2.16 was guava 26.x
<!-- In Jackson 2.18 was guava 25.1-jre
-->
<version.guava>32.1.3-jre</version.guava>
<version.guava>33.1.0-jre</version.guava>
<version.guava.osgi>[${version.guava}.0,99)</version.guava.osgi>

<!-- Generate PackageVersion.java into this directory. -->
Expand Down

0 comments on commit b00b8a6

Please sign in to comment.