STDO-124: Rewrite TIFFUtils onto TwelveMonkeys imageio-tiff - #7
Draft
alextwigkit wants to merge 1 commit into
Draft
STDO-124: Rewrite TIFFUtils onto TwelveMonkeys imageio-tiff#7alextwigkit wants to merge 1 commit into
alextwigkit wants to merge 1 commit into
Conversation
Closes the jai_* route: the old it.geosolutions.imageio-ext dependency pulls JAI transitively, and jai_* jars are withdrawn from Maven Central with no offline equivalent. TwelveMonkeys' imageio-tiff implements the same javax.imageio.spi.ImageReaderSpi contract as a drop-in replacement. Part of the STDO-124 licence-clean subtraction on framework.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Part of P1's licence-clean subtraction on
framework(Legacy App Studio perpetual source-handoff bet).frameworkcloses both routes to thejai_*imageio jars, which are withdrawn from Maven Central with no offline equivalent; this repo was the other route.What changed
Swapped
it.geosolutions.imageio-ext:imageio-ext-tiff:1.1.0(pulls JAI transitively) forcom.twelvemonkeys.imageio:imageio-tiff:3.10.1inpom.xml, and the corresponding import inTIFFUtils.java. Samejavax.imageio.spi.ImageReaderSpicontract (createReaderInstance(),setInput,read(int),dispose()) — a drop-in replacement, no other source changes needed.Verified
mvn clean installfrom an empty local repository: exit 0.See
PLAN.mdinlucidworks/tbe-pitches(STDO-124-bet) for the full plan.