-
Notifications
You must be signed in to change notification settings - Fork 55
Try to fix #160 (OSGi dep problem wrt Guava) #161
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 2 commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -38,12 +38,13 @@ Guava (https://github.com/google/guava) types (currently mostly just collection | |
<!-- 28-Feb-2023, tatu: 2.15 raises baseline from 21.x to 23.x --> | ||
<!-- 01-May-2023, tatu: 2.16 raises baseline from 23.x to 25.x --> | ||
<version.guava>25.1-jre</version.guava> | ||
<version.guava.osgi-base>25.1</version.guava.osgi-base> | ||
|
||
<javac.src.version>1.8</javac.src.version> | ||
<javac.target.version>1.8</javac.target.version> | ||
|
||
<!-- 31-Jul-2020, tatu: remove upper limit for Jackson 2.12; tested up to 30.x --> | ||
<version.guava.osgi>[${version.guava}.0,99)</version.guava.osgi> | ||
<version.guava.osgi>[${version.guava.osgi-base}, 99)</version.guava.osgi> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. A space has been added before There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Thanks, that was unintentional -- I suspect it should be ok but better safe than sorry so will remove |
||
|
||
<!-- Generate PackageVersion.java into this directory. --> | ||
<packageVersion.dir>com/fasterxml/jackson/datatype/guava</packageVersion.dir> | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
As mentioned in #160 (comment) the exact version that is used for exporting the required package in guava library is
25.1.0
. Thus using this exact version string we should be safe.