From 3f6bc722bc8d8e37bccf25373a3efeacb5a3bd5c Mon Sep 17 00:00:00 2001 From: Harald Kuhr Date: Wed, 2 Nov 2016 09:36:11 +0100 Subject: [PATCH 1/6] Typo in TIFF tag name. --- .../java/com/twelvemonkeys/imageio/metadata/exif/EXIFEntry.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/imageio/imageio-metadata/src/main/java/com/twelvemonkeys/imageio/metadata/exif/EXIFEntry.java b/imageio/imageio-metadata/src/main/java/com/twelvemonkeys/imageio/metadata/exif/EXIFEntry.java index 0c6f5403..9d88ef24 100644 --- a/imageio/imageio-metadata/src/main/java/com/twelvemonkeys/imageio/metadata/exif/EXIFEntry.java +++ b/imageio/imageio-metadata/src/main/java/com/twelvemonkeys/imageio/metadata/exif/EXIFEntry.java @@ -102,7 +102,7 @@ final class EXIFEntry extends AbstractEntry { case TIFF.TAG_ORIENTATION: return "Orientation"; case TIFF.TAG_SAMPLES_PER_PIXEL: - return "SamplesPerPixels"; + return "SamplesPerPixel"; case TIFF.TAG_ROWS_PER_STRIP: return "RowsPerStrip"; case TIFF.TAG_STRIP_BYTE_COUNTS: From 34eb084d246d4d3a9bc84859326d4784b734b569 Mon Sep 17 00:00:00 2001 From: Harald Kuhr Date: Wed, 2 Nov 2016 19:06:12 +0100 Subject: [PATCH 2/6] #212 TIFF subsampling fix --- .../plugins/svg/SVGImageReaderTest.java | 7 ++ .../plugins/wmf/WMFImageReaderTest.java | 7 ++ .../imageio/plugins/bmp/BMPImageReader.java | 6 +- .../plugins/bmp/BMPImageReaderTest.java | 59 +++++++++++++- .../plugins/bmp/CURImageReaderTest.java | 7 ++ .../plugins/bmp/ICOImageReaderTest.java | 7 ++ .../imageio/util/ImageReaderAbstractTest.java | 59 +++++++++++--- .../plugins/pict/PICTImageReaderTest.java | 14 ++-- .../imageio/plugins/tga/TGAImageReader.java | 7 +- .../imageio/plugins/tiff/TIFFImageReader.java | 79 +++++++++++++------ .../plugins/tiff/TIFFImageReaderTest.java | 71 ++++++++++++++++- 11 files changed, 273 insertions(+), 50 deletions(-) diff --git a/imageio/imageio-batik/src/test/java/com/twelvemonkeys/imageio/plugins/svg/SVGImageReaderTest.java b/imageio/imageio-batik/src/test/java/com/twelvemonkeys/imageio/plugins/svg/SVGImageReaderTest.java index 9f0e8b52..59a06967 100755 --- a/imageio/imageio-batik/src/test/java/com/twelvemonkeys/imageio/plugins/svg/SVGImageReaderTest.java +++ b/imageio/imageio-batik/src/test/java/com/twelvemonkeys/imageio/plugins/svg/SVGImageReaderTest.java @@ -120,6 +120,13 @@ public class SVGImageReaderTest extends ImageReaderAbstractTest super.testReadWithSourceRegionParamEqualImage(); } + @Test + @Ignore("Known issue: Subsampled reading not supported") + @Override + public void testReadWithSubsampleParamPixels() throws IOException { + super.testReadWithSubsampleParamPixels(); + } + @Test public void testRepeatedRead() throws IOException { Dimension dim = new Dimension(100, 100); diff --git a/imageio/imageio-batik/src/test/java/com/twelvemonkeys/imageio/plugins/wmf/WMFImageReaderTest.java b/imageio/imageio-batik/src/test/java/com/twelvemonkeys/imageio/plugins/wmf/WMFImageReaderTest.java index 9220d115..b634b138 100755 --- a/imageio/imageio-batik/src/test/java/com/twelvemonkeys/imageio/plugins/wmf/WMFImageReaderTest.java +++ b/imageio/imageio-batik/src/test/java/com/twelvemonkeys/imageio/plugins/wmf/WMFImageReaderTest.java @@ -86,4 +86,11 @@ public class WMFImageReaderTest extends ImageReaderAbstractTest public void testReadWithSourceRegionParamEqualImage() throws IOException { super.testReadWithSourceRegionParamEqualImage(); } + + @Test + @Ignore("Known issue: Subsampled reading not supported") + @Override + public void testReadWithSubsampleParamPixels() throws IOException { + super.testReadWithSubsampleParamPixels(); + } } \ No newline at end of file diff --git a/imageio/imageio-bmp/src/main/java/com/twelvemonkeys/imageio/plugins/bmp/BMPImageReader.java b/imageio/imageio-bmp/src/main/java/com/twelvemonkeys/imageio/plugins/bmp/BMPImageReader.java index 6ff96a19..9151dce6 100755 --- a/imageio/imageio-bmp/src/main/java/com/twelvemonkeys/imageio/plugins/bmp/BMPImageReader.java +++ b/imageio/imageio-bmp/src/main/java/com/twelvemonkeys/imageio/plugins/bmp/BMPImageReader.java @@ -692,12 +692,14 @@ public final class BMPImageReader extends ImageReaderBase { if (imageMetadata != null) { new XMLSerializer(System.out, System.getProperty("file.encoding")).serialize(imageMetadata.getAsTree(IIOMetadataFormatImpl.standardMetadataFormatName), false); } - } catch (Throwable t) { + } + catch (Throwable t) { if (args.length > 1) { System.err.println("---"); System.err.println("---> " + t.getClass().getSimpleName() + ": " + t.getMessage() + " for " + arg); System.err.println("---"); - } else { + } + else { throwAs(RuntimeException.class, t); } } diff --git a/imageio/imageio-bmp/src/test/java/com/twelvemonkeys/imageio/plugins/bmp/BMPImageReaderTest.java b/imageio/imageio-bmp/src/test/java/com/twelvemonkeys/imageio/plugins/bmp/BMPImageReaderTest.java index 76a495b3..12646e9a 100755 --- a/imageio/imageio-bmp/src/test/java/com/twelvemonkeys/imageio/plugins/bmp/BMPImageReaderTest.java +++ b/imageio/imageio-bmp/src/test/java/com/twelvemonkeys/imageio/plugins/bmp/BMPImageReaderTest.java @@ -1,20 +1,19 @@ package com.twelvemonkeys.imageio.plugins.bmp; import com.twelvemonkeys.imageio.util.ImageReaderAbstractTest; +import org.junit.Ignore; import org.junit.Test; import org.mockito.InOrder; import org.w3c.dom.Node; import org.w3c.dom.NodeList; -import javax.imageio.IIOException; -import javax.imageio.ImageIO; -import javax.imageio.ImageReader; -import javax.imageio.ImageTypeSpecifier; +import javax.imageio.*; import javax.imageio.event.IIOReadProgressListener; import javax.imageio.metadata.IIOMetadata; import javax.imageio.metadata.IIOMetadataNode; import javax.imageio.spi.ImageReaderSpi; import java.awt.*; +import java.awt.image.BufferedImage; import java.io.IOException; import java.lang.reflect.Constructor; import java.net.URISyntaxException; @@ -174,6 +173,58 @@ public class BMPImageReaderTest extends ImageReaderAbstractTest } } + @Ignore("Known issue: Subsampled reading is currently broken") + @Test + public void testReadWithSubsampleParamPixelsIndexed8() throws IOException { + ImageReader reader = createReader(); + TestData data = getTestData().get(0); + reader.setInput(data.getInputStream()); + + ImageReadParam param = reader.getDefaultReadParam(); + + BufferedImage image = null; + BufferedImage subsampled = null; + try { + image = reader.read(0, param); + + param.setSourceSubsampling(2, 2, 0, 0); + subsampled = reader.read(0, param); + } + catch (IOException e) { + failBecause("Image could not be read", e); + } + + assertSubsampledImageDataEquals("Subsampled image data does not match expected", image, subsampled, param); + } + + // TODO: 1. Subsampling is currently broken, should fix it. + // 2. BMPs are (normally) stored bottom/up, meaning y subsampling offsets will differ from normal + // subsampling of the same data with an offset... Should we deal with this in the reader? Yes? + @Ignore("Known issue: Subsampled reading is currently broken") + @Test + @Override + public void testReadWithSubsampleParamPixels() throws IOException { + ImageReader reader = createReader(); + TestData data = getTestData().get(19); // RGB 24 + reader.setInput(data.getInputStream()); + + ImageReadParam param = reader.getDefaultReadParam(); + + BufferedImage image = null; + BufferedImage subsampled = null; + try { + image = reader.read(0, param); + + param.setSourceSubsampling(2, 2, 0, 0); + subsampled = reader.read(0, param); + } + catch (IOException e) { + failBecause("Image could not be read", e); + } + + assertSubsampledImageDataEquals("Subsampled image data does not match expected", image, subsampled, param); + } + @Test(expected = IIOException.class) public void testReadCorruptCausesIIOException() throws IOException { // See https://bugs.openjdk.java.net/browse/JDK-8066904 diff --git a/imageio/imageio-bmp/src/test/java/com/twelvemonkeys/imageio/plugins/bmp/CURImageReaderTest.java b/imageio/imageio-bmp/src/test/java/com/twelvemonkeys/imageio/plugins/bmp/CURImageReaderTest.java index fe885d86..a40ba06d 100755 --- a/imageio/imageio-bmp/src/test/java/com/twelvemonkeys/imageio/plugins/bmp/CURImageReaderTest.java +++ b/imageio/imageio-bmp/src/test/java/com/twelvemonkeys/imageio/plugins/bmp/CURImageReaderTest.java @@ -119,4 +119,11 @@ public class CURImageReaderTest extends ImageReaderAbstractTest public void testNotBadCaching() throws IOException { super.testNotBadCaching(); } + + @Test + @Ignore("Known issue: Subsampled reading currently not supported") + @Override + public void testReadWithSubsampleParamPixels() throws IOException { + super.testReadWithSubsampleParamPixels(); + } } \ No newline at end of file diff --git a/imageio/imageio-bmp/src/test/java/com/twelvemonkeys/imageio/plugins/bmp/ICOImageReaderTest.java b/imageio/imageio-bmp/src/test/java/com/twelvemonkeys/imageio/plugins/bmp/ICOImageReaderTest.java index ed5a2adc..9c121287 100755 --- a/imageio/imageio-bmp/src/test/java/com/twelvemonkeys/imageio/plugins/bmp/ICOImageReaderTest.java +++ b/imageio/imageio-bmp/src/test/java/com/twelvemonkeys/imageio/plugins/bmp/ICOImageReaderTest.java @@ -76,4 +76,11 @@ public class ICOImageReaderTest extends ImageReaderAbstractTest public void testNotBadCaching() throws IOException { super.testNotBadCaching(); } + + @Test + @Ignore("Known issue: Subsampled reading currently not supported") + @Override + public void testReadWithSubsampleParamPixels() throws IOException { + super.testReadWithSubsampleParamPixels(); + } } \ No newline at end of file diff --git a/imageio/imageio-core/src/test/java/com/twelvemonkeys/imageio/util/ImageReaderAbstractTest.java b/imageio/imageio-core/src/test/java/com/twelvemonkeys/imageio/util/ImageReaderAbstractTest.java index 2864f844..f002a0fb 100644 --- a/imageio/imageio-core/src/test/java/com/twelvemonkeys/imageio/util/ImageReaderAbstractTest.java +++ b/imageio/imageio-core/src/test/java/com/twelvemonkeys/imageio/util/ImageReaderAbstractTest.java @@ -28,7 +28,6 @@ package com.twelvemonkeys.imageio.util; -import com.twelvemonkeys.image.ImageUtil; import com.twelvemonkeys.imageio.stream.URLImageInputStreamSpi; import org.junit.Ignore; import org.junit.Test; @@ -46,6 +45,7 @@ import java.awt.*; import java.awt.image.BufferedImage; import java.awt.image.RenderedImage; import java.awt.image.SampleModel; +import java.io.File; import java.io.IOException; import java.net.URL; import java.util.ArrayList; @@ -98,7 +98,7 @@ public abstract class ImageReaderAbstractTest { return false; } - private static void failBecause(String message, Throwable exception) { + protected static void failBecause(String message, Throwable exception) { AssertionError error = new AssertionError(message); error.initCause(exception); throw error; @@ -471,7 +471,6 @@ public abstract class ImageReaderAbstractTest { assertEquals("Read image has wrong height: ", (data.getDimension(0).height + 4) / 5, image.getHeight()); } - @Ignore @Test public void testReadWithSubsampleParamPixels() throws IOException { ImageReader reader = createReader(); @@ -479,28 +478,66 @@ public abstract class ImageReaderAbstractTest { reader.setInput(data.getInputStream()); ImageReadParam param = reader.getDefaultReadParam(); - param.setSourceRegion(new Rectangle(Math.min(100, reader.getWidth(0)), Math.min(100, reader.getHeight(0)))); BufferedImage image = null; BufferedImage subsampled = null; try { image = reader.read(0, param); - param.setSourceSubsampling(2, 2, 1, 1); // Hmm.. Seems to be the offset the fake version (ReplicateScaleFilter) uses + param.setSourceSubsampling(2, 2, 0, 0); subsampled = reader.read(0, param); } catch (IOException e) { failBecause("Image could not be read", e); } - BufferedImage expected = ImageUtil.toBuffered(IIOUtil.fakeSubsampling(image, param)); + assertSubsampledImageDataEquals("Subsampled image data does not match expected", image, subsampled, param); + } -// JPanel panel = new JPanel(); -// panel.add(new JLabel("Expected", new BufferedImageIcon(expected, 300, 300), JLabel.CENTER)); -// panel.add(new JLabel("Actual", new BufferedImageIcon(subsampled, 300, 300), JLabel.CENTER)); -// JOptionPane.showConfirmDialog(null, panel); + // TODO: Subsample all test data + // TODO: Subsample with varying ratios and offsets - assertImageDataEquals("Subsampled image data does not match expected", expected, subsampled); + protected final void assertSubsampledImageDataEquals(String message, BufferedImage expected, BufferedImage actual, ImageReadParam param) throws IOException { + assertNotNull("Expected image was null", expected); + assertNotNull("Actual image was null!", actual); + + if (expected == actual) { + return; + } + + int xOff = param.getSubsamplingXOffset(); + int yOff = param.getSubsamplingYOffset(); + int xSub = param.getSourceXSubsampling(); + int ySub = param.getSourceYSubsampling(); + + assertEquals("Subsampled image has wrong width: ", (expected.getWidth() - xOff + xSub - 1) / xSub, actual.getWidth()); + assertEquals("Subsampled image has wrong height: ", (expected.getHeight() - yOff + ySub - 1) / ySub, actual.getHeight()); + assertEquals("Subsampled has different type", expected.getType(), actual.getType()); + + for (int y = 0; y < actual.getHeight(); y++) { + for (int x = 0; x < actual.getWidth(); x++) { + int expectedRGB = expected.getRGB(xOff + x * xSub, yOff + y * ySub); + int actualRGB = actual.getRGB(x, y); + + try { + assertEquals(String.format("%s alpha at (%d, %d)", message, x, y), (expectedRGB >>> 24) & 0xff, (actualRGB >>> 24) & 0xff, 5); + assertEquals(String.format("%s red at (%d, %d)", message, x, y), (expectedRGB >> 16) & 0xff, (actualRGB >> 16) & 0xff, 5); + assertEquals(String.format("%s green at (%d, %d)", message, x, y), (expectedRGB >> 8) & 0xff, (actualRGB >> 8) & 0xff, 5); + assertEquals(String.format("%s blue at (%d, %d)", message, x, y), expectedRGB & 0xff, actualRGB & 0xff, 5); + } + catch (AssertionError e) { + File tempExpected = File.createTempFile("junit-expected-", ".png"); + System.err.println("tempExpected.getAbsolutePath(): " + tempExpected.getAbsolutePath()); + ImageIO.write(expected, "PNG", tempExpected); + File tempActual = File.createTempFile("junit-actual-", ".png"); + System.err.println("tempActual.getAbsolutePath(): " + tempActual.getAbsolutePath()); + ImageIO.write(actual, "PNG", tempActual); + + + assertEquals(String.format("%s ARGB at (%d, %d)", message, x, y), String.format("#%08x", expectedRGB), String.format("#%08x", actualRGB)); + } + } + } } protected final void assertImageDataEquals(String message, BufferedImage expected, BufferedImage actual) { diff --git a/imageio/imageio-pict/src/test/java/com/twelvemonkeys/imageio/plugins/pict/PICTImageReaderTest.java b/imageio/imageio-pict/src/test/java/com/twelvemonkeys/imageio/plugins/pict/PICTImageReaderTest.java index 9c46904c..15078df2 100644 --- a/imageio/imageio-pict/src/test/java/com/twelvemonkeys/imageio/plugins/pict/PICTImageReaderTest.java +++ b/imageio/imageio-pict/src/test/java/com/twelvemonkeys/imageio/plugins/pict/PICTImageReaderTest.java @@ -3,6 +3,7 @@ package com.twelvemonkeys.imageio.plugins.pict; import com.twelvemonkeys.imageio.stream.ByteArrayImageInputStream; import com.twelvemonkeys.imageio.stream.ByteArrayImageInputStreamSpi; import com.twelvemonkeys.imageio.util.ImageReaderAbstractTest; +import org.junit.Ignore; import org.junit.Test; import javax.imageio.spi.IIORegistry; @@ -83,6 +84,13 @@ public class PICTImageReaderTest extends ImageReaderAbstractTest Date: Wed, 2 Nov 2016 19:27:22 +0100 Subject: [PATCH 3/6] [maven-release-plugin] prepare release twelvemonkeys-3.3 --- bom/pom.xml | 2 +- common/common-image/pom.xml | 2 +- common/common-io/pom.xml | 2 +- common/common-lang/pom.xml | 2 +- common/pom.xml | 2 +- contrib/pom.xml | 2 +- imageio/imageio-batik/pom.xml | 2 +- imageio/imageio-bmp/pom.xml | 2 +- imageio/imageio-clippath/pom.xml | 2 +- imageio/imageio-core/pom.xml | 2 +- imageio/imageio-hdr/pom.xml | 2 +- imageio/imageio-icns/pom.xml | 2 +- imageio/imageio-iff/pom.xml | 2 +- imageio/imageio-jpeg/pom.xml | 2 +- imageio/imageio-metadata/pom.xml | 2 +- imageio/imageio-pcx/pom.xml | 2 +- imageio/imageio-pdf/pom.xml | 2 +- imageio/imageio-pict/pom.xml | 2 +- imageio/imageio-pnm/pom.xml | 2 +- imageio/imageio-psd/pom.xml | 2 +- imageio/imageio-reference/pom.xml | 2 +- imageio/imageio-sgi/pom.xml | 2 +- imageio/imageio-tga/pom.xml | 2 +- imageio/imageio-thumbsdb/pom.xml | 2 +- imageio/imageio-tiff/pom.xml | 2 +- imageio/pom.xml | 2 +- pom.xml | 4 ++-- servlet/pom.xml | 2 +- 28 files changed, 29 insertions(+), 29 deletions(-) diff --git a/bom/pom.xml b/bom/pom.xml index a684765c..ddc99a34 100644 --- a/bom/pom.xml +++ b/bom/pom.xml @@ -5,7 +5,7 @@ com.twelvemonkeys twelvemonkeys - 3.3-SNAPSHOT + 3.3 com.twelvemonkeys.bom diff --git a/common/common-image/pom.xml b/common/common-image/pom.xml index 55cfc26c..56324bba 100644 --- a/common/common-image/pom.xml +++ b/common/common-image/pom.xml @@ -4,7 +4,7 @@ com.twelvemonkeys.common common - 3.3-SNAPSHOT + 3.3 common-image jar diff --git a/common/common-io/pom.xml b/common/common-io/pom.xml index b4d3207c..b3363a33 100644 --- a/common/common-io/pom.xml +++ b/common/common-io/pom.xml @@ -4,7 +4,7 @@ com.twelvemonkeys.common common - 3.3-SNAPSHOT + 3.3 common-io jar diff --git a/common/common-lang/pom.xml b/common/common-lang/pom.xml index f3436902..0587ad72 100644 --- a/common/common-lang/pom.xml +++ b/common/common-lang/pom.xml @@ -4,7 +4,7 @@ com.twelvemonkeys.common common - 3.3-SNAPSHOT + 3.3 common-lang jar diff --git a/common/pom.xml b/common/pom.xml index b6b9f6f7..441c617f 100644 --- a/common/pom.xml +++ b/common/pom.xml @@ -4,7 +4,7 @@ com.twelvemonkeys twelvemonkeys - 3.3-SNAPSHOT + 3.3 com.twelvemonkeys.common common diff --git a/contrib/pom.xml b/contrib/pom.xml index 9a73d3c6..2b8ca8ef 100644 --- a/contrib/pom.xml +++ b/contrib/pom.xml @@ -4,7 +4,7 @@ com.twelvemonkeys twelvemonkeys - 3.3-SNAPSHOT + 3.3 com.twelvemonkeys.contrib contrib diff --git a/imageio/imageio-batik/pom.xml b/imageio/imageio-batik/pom.xml index 1f31c074..dba76f01 100644 --- a/imageio/imageio-batik/pom.xml +++ b/imageio/imageio-batik/pom.xml @@ -4,7 +4,7 @@ com.twelvemonkeys.imageio imageio - 3.3-SNAPSHOT + 3.3 imageio-batik TwelveMonkeys :: ImageIO :: Batik Plugin diff --git a/imageio/imageio-bmp/pom.xml b/imageio/imageio-bmp/pom.xml index 8b6aa174..7fcbd45d 100644 --- a/imageio/imageio-bmp/pom.xml +++ b/imageio/imageio-bmp/pom.xml @@ -4,7 +4,7 @@ com.twelvemonkeys.imageio imageio - 3.3-SNAPSHOT + 3.3 imageio-bmp TwelveMonkeys :: ImageIO :: BMP plugin diff --git a/imageio/imageio-clippath/pom.xml b/imageio/imageio-clippath/pom.xml index 85d4852a..c36f9f67 100755 --- a/imageio/imageio-clippath/pom.xml +++ b/imageio/imageio-clippath/pom.xml @@ -4,7 +4,7 @@ com.twelvemonkeys.imageio imageio - 3.3-SNAPSHOT + 3.3 imageio-clippath TwelveMonkeys :: ImageIO :: Photoshop Path Support diff --git a/imageio/imageio-core/pom.xml b/imageio/imageio-core/pom.xml index 3c295d76..51171919 100644 --- a/imageio/imageio-core/pom.xml +++ b/imageio/imageio-core/pom.xml @@ -4,7 +4,7 @@ com.twelvemonkeys.imageio imageio - 3.3-SNAPSHOT + 3.3 imageio-core TwelveMonkeys :: ImageIO :: Core diff --git a/imageio/imageio-hdr/pom.xml b/imageio/imageio-hdr/pom.xml index 20efae92..fbc95e39 100644 --- a/imageio/imageio-hdr/pom.xml +++ b/imageio/imageio-hdr/pom.xml @@ -4,7 +4,7 @@ com.twelvemonkeys.imageio imageio - 3.3-SNAPSHOT + 3.3 imageio-hdr TwelveMonkeys :: ImageIO :: HDR plugin diff --git a/imageio/imageio-icns/pom.xml b/imageio/imageio-icns/pom.xml index 37937b29..521ed191 100644 --- a/imageio/imageio-icns/pom.xml +++ b/imageio/imageio-icns/pom.xml @@ -4,7 +4,7 @@ com.twelvemonkeys.imageio imageio - 3.3-SNAPSHOT + 3.3 imageio-icns TwelveMonkeys :: ImageIO :: ICNS plugin diff --git a/imageio/imageio-iff/pom.xml b/imageio/imageio-iff/pom.xml index 1bac81f2..7172c51d 100644 --- a/imageio/imageio-iff/pom.xml +++ b/imageio/imageio-iff/pom.xml @@ -4,7 +4,7 @@ com.twelvemonkeys.imageio imageio - 3.3-SNAPSHOT + 3.3 imageio-iff TwelveMonkeys :: ImageIO :: IFF plugin diff --git a/imageio/imageio-jpeg/pom.xml b/imageio/imageio-jpeg/pom.xml index 1a2c62e0..ef659d91 100644 --- a/imageio/imageio-jpeg/pom.xml +++ b/imageio/imageio-jpeg/pom.xml @@ -4,7 +4,7 @@ com.twelvemonkeys.imageio imageio - 3.3-SNAPSHOT + 3.3 imageio-jpeg TwelveMonkeys :: ImageIO :: JPEG plugin diff --git a/imageio/imageio-metadata/pom.xml b/imageio/imageio-metadata/pom.xml index 40993b3f..3cc1aee3 100644 --- a/imageio/imageio-metadata/pom.xml +++ b/imageio/imageio-metadata/pom.xml @@ -3,7 +3,7 @@ com.twelvemonkeys.imageio imageio - 3.3-SNAPSHOT + 3.3 4.0.0 imageio-metadata diff --git a/imageio/imageio-pcx/pom.xml b/imageio/imageio-pcx/pom.xml index 0f49aa20..0e631da7 100755 --- a/imageio/imageio-pcx/pom.xml +++ b/imageio/imageio-pcx/pom.xml @@ -4,7 +4,7 @@ com.twelvemonkeys.imageio imageio - 3.3-SNAPSHOT + 3.3 imageio-pcx TwelveMonkeys :: ImageIO :: PCX plugin diff --git a/imageio/imageio-pdf/pom.xml b/imageio/imageio-pdf/pom.xml index 9f19c32e..0737ba8a 100644 --- a/imageio/imageio-pdf/pom.xml +++ b/imageio/imageio-pdf/pom.xml @@ -4,7 +4,7 @@ com.twelvemonkeys.imageio imageio - 3.3-SNAPSHOT + 3.3 imageio-pdf TwelveMonkeys :: ImageIO :: PDF plugin diff --git a/imageio/imageio-pict/pom.xml b/imageio/imageio-pict/pom.xml index 1b9afc34..33e18cf0 100644 --- a/imageio/imageio-pict/pom.xml +++ b/imageio/imageio-pict/pom.xml @@ -4,7 +4,7 @@ com.twelvemonkeys.imageio imageio - 3.3-SNAPSHOT + 3.3 imageio-pict TwelveMonkeys :: ImageIO :: PICT plugin diff --git a/imageio/imageio-pnm/pom.xml b/imageio/imageio-pnm/pom.xml index 647d5ae1..e25371f0 100755 --- a/imageio/imageio-pnm/pom.xml +++ b/imageio/imageio-pnm/pom.xml @@ -4,7 +4,7 @@ com.twelvemonkeys.imageio imageio - 3.3-SNAPSHOT + 3.3 imageio-pnm TwelveMonkeys :: ImageIO :: PNM plugin diff --git a/imageio/imageio-psd/pom.xml b/imageio/imageio-psd/pom.xml index c58d19b4..018841b8 100644 --- a/imageio/imageio-psd/pom.xml +++ b/imageio/imageio-psd/pom.xml @@ -4,7 +4,7 @@ com.twelvemonkeys.imageio imageio - 3.3-SNAPSHOT + 3.3 imageio-psd TwelveMonkeys :: ImageIO :: PSD plugin diff --git a/imageio/imageio-reference/pom.xml b/imageio/imageio-reference/pom.xml index 00899b72..37d2426b 100644 --- a/imageio/imageio-reference/pom.xml +++ b/imageio/imageio-reference/pom.xml @@ -4,7 +4,7 @@ com.twelvemonkeys.imageio imageio - 3.3-SNAPSHOT + 3.3 imageio-reference TwelveMonkeys :: ImageIO :: reference test cases diff --git a/imageio/imageio-sgi/pom.xml b/imageio/imageio-sgi/pom.xml index 0296d502..08c833ae 100755 --- a/imageio/imageio-sgi/pom.xml +++ b/imageio/imageio-sgi/pom.xml @@ -4,7 +4,7 @@ com.twelvemonkeys.imageio imageio - 3.3-SNAPSHOT + 3.3 imageio-sgi TwelveMonkeys :: ImageIO :: SGI plugin diff --git a/imageio/imageio-tga/pom.xml b/imageio/imageio-tga/pom.xml index 2683485a..d7355e8d 100755 --- a/imageio/imageio-tga/pom.xml +++ b/imageio/imageio-tga/pom.xml @@ -4,7 +4,7 @@ com.twelvemonkeys.imageio imageio - 3.3-SNAPSHOT + 3.3 imageio-tga TwelveMonkeys :: ImageIO :: TGA plugin diff --git a/imageio/imageio-thumbsdb/pom.xml b/imageio/imageio-thumbsdb/pom.xml index 7ade94f8..e0112843 100644 --- a/imageio/imageio-thumbsdb/pom.xml +++ b/imageio/imageio-thumbsdb/pom.xml @@ -4,7 +4,7 @@ com.twelvemonkeys.imageio imageio - 3.3-SNAPSHOT + 3.3 imageio-thumbsdb TwelveMonkeys :: ImageIO :: Thumbs.db plugin diff --git a/imageio/imageio-tiff/pom.xml b/imageio/imageio-tiff/pom.xml index 11f66f34..69508251 100644 --- a/imageio/imageio-tiff/pom.xml +++ b/imageio/imageio-tiff/pom.xml @@ -4,7 +4,7 @@ com.twelvemonkeys.imageio imageio - 3.3-SNAPSHOT + 3.3 imageio-tiff TwelveMonkeys :: ImageIO :: TIFF plugin diff --git a/imageio/pom.xml b/imageio/pom.xml index 1c30e3b5..0cc79a53 100644 --- a/imageio/pom.xml +++ b/imageio/pom.xml @@ -3,7 +3,7 @@ com.twelvemonkeys twelvemonkeys - 3.3-SNAPSHOT + 3.3 4.0.0 com.twelvemonkeys.imageio diff --git a/pom.xml b/pom.xml index cb1d24ad..707dbe95 100755 --- a/pom.xml +++ b/pom.xml @@ -8,7 +8,7 @@ com.twelvemonkeys twelvemonkeys - 3.3-SNAPSHOT + 3.3 pom Twelvemonkeys @@ -83,7 +83,7 @@ scm:git:https://github.com/haraldk/TwelveMonkeys scm:git:https://github.com/haraldk/TwelveMonkeys https://github.com/haraldk/TwelveMonkeys - HEAD + twelvemonkeys-3.3 diff --git a/servlet/pom.xml b/servlet/pom.xml index 2f2fc663..0e5e7f95 100644 --- a/servlet/pom.xml +++ b/servlet/pom.xml @@ -3,7 +3,7 @@ com.twelvemonkeys twelvemonkeys - 3.3-SNAPSHOT + 3.3 4.0.0 From 6d043d020826ccbacd1e774e66c7d5d7a93d8119 Mon Sep 17 00:00:00 2001 From: Harald Kuhr Date: Wed, 2 Nov 2016 19:31:52 +0100 Subject: [PATCH 4/6] [maven-release-plugin] rollback the release of twelvemonkeys-3.3 --- bom/pom.xml | 2 +- common/common-image/pom.xml | 2 +- common/common-io/pom.xml | 2 +- common/common-lang/pom.xml | 2 +- common/pom.xml | 2 +- contrib/pom.xml | 2 +- imageio/imageio-batik/pom.xml | 2 +- imageio/imageio-bmp/pom.xml | 2 +- imageio/imageio-clippath/pom.xml | 2 +- imageio/imageio-core/pom.xml | 2 +- imageio/imageio-hdr/pom.xml | 2 +- imageio/imageio-icns/pom.xml | 2 +- imageio/imageio-iff/pom.xml | 2 +- imageio/imageio-jpeg/pom.xml | 2 +- imageio/imageio-metadata/pom.xml | 2 +- imageio/imageio-pcx/pom.xml | 2 +- imageio/imageio-pdf/pom.xml | 2 +- imageio/imageio-pict/pom.xml | 2 +- imageio/imageio-pnm/pom.xml | 2 +- imageio/imageio-psd/pom.xml | 2 +- imageio/imageio-reference/pom.xml | 2 +- imageio/imageio-sgi/pom.xml | 2 +- imageio/imageio-tga/pom.xml | 2 +- imageio/imageio-thumbsdb/pom.xml | 2 +- imageio/imageio-tiff/pom.xml | 2 +- imageio/pom.xml | 2 +- pom.xml | 4 ++-- servlet/pom.xml | 2 +- 28 files changed, 29 insertions(+), 29 deletions(-) diff --git a/bom/pom.xml b/bom/pom.xml index ddc99a34..a684765c 100644 --- a/bom/pom.xml +++ b/bom/pom.xml @@ -5,7 +5,7 @@ com.twelvemonkeys twelvemonkeys - 3.3 + 3.3-SNAPSHOT com.twelvemonkeys.bom diff --git a/common/common-image/pom.xml b/common/common-image/pom.xml index 56324bba..55cfc26c 100644 --- a/common/common-image/pom.xml +++ b/common/common-image/pom.xml @@ -4,7 +4,7 @@ com.twelvemonkeys.common common - 3.3 + 3.3-SNAPSHOT common-image jar diff --git a/common/common-io/pom.xml b/common/common-io/pom.xml index b3363a33..b4d3207c 100644 --- a/common/common-io/pom.xml +++ b/common/common-io/pom.xml @@ -4,7 +4,7 @@ com.twelvemonkeys.common common - 3.3 + 3.3-SNAPSHOT common-io jar diff --git a/common/common-lang/pom.xml b/common/common-lang/pom.xml index 0587ad72..f3436902 100644 --- a/common/common-lang/pom.xml +++ b/common/common-lang/pom.xml @@ -4,7 +4,7 @@ com.twelvemonkeys.common common - 3.3 + 3.3-SNAPSHOT common-lang jar diff --git a/common/pom.xml b/common/pom.xml index 441c617f..b6b9f6f7 100644 --- a/common/pom.xml +++ b/common/pom.xml @@ -4,7 +4,7 @@ com.twelvemonkeys twelvemonkeys - 3.3 + 3.3-SNAPSHOT com.twelvemonkeys.common common diff --git a/contrib/pom.xml b/contrib/pom.xml index 2b8ca8ef..9a73d3c6 100644 --- a/contrib/pom.xml +++ b/contrib/pom.xml @@ -4,7 +4,7 @@ com.twelvemonkeys twelvemonkeys - 3.3 + 3.3-SNAPSHOT com.twelvemonkeys.contrib contrib diff --git a/imageio/imageio-batik/pom.xml b/imageio/imageio-batik/pom.xml index dba76f01..1f31c074 100644 --- a/imageio/imageio-batik/pom.xml +++ b/imageio/imageio-batik/pom.xml @@ -4,7 +4,7 @@ com.twelvemonkeys.imageio imageio - 3.3 + 3.3-SNAPSHOT imageio-batik TwelveMonkeys :: ImageIO :: Batik Plugin diff --git a/imageio/imageio-bmp/pom.xml b/imageio/imageio-bmp/pom.xml index 7fcbd45d..8b6aa174 100644 --- a/imageio/imageio-bmp/pom.xml +++ b/imageio/imageio-bmp/pom.xml @@ -4,7 +4,7 @@ com.twelvemonkeys.imageio imageio - 3.3 + 3.3-SNAPSHOT imageio-bmp TwelveMonkeys :: ImageIO :: BMP plugin diff --git a/imageio/imageio-clippath/pom.xml b/imageio/imageio-clippath/pom.xml index c36f9f67..85d4852a 100755 --- a/imageio/imageio-clippath/pom.xml +++ b/imageio/imageio-clippath/pom.xml @@ -4,7 +4,7 @@ com.twelvemonkeys.imageio imageio - 3.3 + 3.3-SNAPSHOT imageio-clippath TwelveMonkeys :: ImageIO :: Photoshop Path Support diff --git a/imageio/imageio-core/pom.xml b/imageio/imageio-core/pom.xml index 51171919..3c295d76 100644 --- a/imageio/imageio-core/pom.xml +++ b/imageio/imageio-core/pom.xml @@ -4,7 +4,7 @@ com.twelvemonkeys.imageio imageio - 3.3 + 3.3-SNAPSHOT imageio-core TwelveMonkeys :: ImageIO :: Core diff --git a/imageio/imageio-hdr/pom.xml b/imageio/imageio-hdr/pom.xml index fbc95e39..20efae92 100644 --- a/imageio/imageio-hdr/pom.xml +++ b/imageio/imageio-hdr/pom.xml @@ -4,7 +4,7 @@ com.twelvemonkeys.imageio imageio - 3.3 + 3.3-SNAPSHOT imageio-hdr TwelveMonkeys :: ImageIO :: HDR plugin diff --git a/imageio/imageio-icns/pom.xml b/imageio/imageio-icns/pom.xml index 521ed191..37937b29 100644 --- a/imageio/imageio-icns/pom.xml +++ b/imageio/imageio-icns/pom.xml @@ -4,7 +4,7 @@ com.twelvemonkeys.imageio imageio - 3.3 + 3.3-SNAPSHOT imageio-icns TwelveMonkeys :: ImageIO :: ICNS plugin diff --git a/imageio/imageio-iff/pom.xml b/imageio/imageio-iff/pom.xml index 7172c51d..1bac81f2 100644 --- a/imageio/imageio-iff/pom.xml +++ b/imageio/imageio-iff/pom.xml @@ -4,7 +4,7 @@ com.twelvemonkeys.imageio imageio - 3.3 + 3.3-SNAPSHOT imageio-iff TwelveMonkeys :: ImageIO :: IFF plugin diff --git a/imageio/imageio-jpeg/pom.xml b/imageio/imageio-jpeg/pom.xml index ef659d91..1a2c62e0 100644 --- a/imageio/imageio-jpeg/pom.xml +++ b/imageio/imageio-jpeg/pom.xml @@ -4,7 +4,7 @@ com.twelvemonkeys.imageio imageio - 3.3 + 3.3-SNAPSHOT imageio-jpeg TwelveMonkeys :: ImageIO :: JPEG plugin diff --git a/imageio/imageio-metadata/pom.xml b/imageio/imageio-metadata/pom.xml index 3cc1aee3..40993b3f 100644 --- a/imageio/imageio-metadata/pom.xml +++ b/imageio/imageio-metadata/pom.xml @@ -3,7 +3,7 @@ com.twelvemonkeys.imageio imageio - 3.3 + 3.3-SNAPSHOT 4.0.0 imageio-metadata diff --git a/imageio/imageio-pcx/pom.xml b/imageio/imageio-pcx/pom.xml index 0e631da7..0f49aa20 100755 --- a/imageio/imageio-pcx/pom.xml +++ b/imageio/imageio-pcx/pom.xml @@ -4,7 +4,7 @@ com.twelvemonkeys.imageio imageio - 3.3 + 3.3-SNAPSHOT imageio-pcx TwelveMonkeys :: ImageIO :: PCX plugin diff --git a/imageio/imageio-pdf/pom.xml b/imageio/imageio-pdf/pom.xml index 0737ba8a..9f19c32e 100644 --- a/imageio/imageio-pdf/pom.xml +++ b/imageio/imageio-pdf/pom.xml @@ -4,7 +4,7 @@ com.twelvemonkeys.imageio imageio - 3.3 + 3.3-SNAPSHOT imageio-pdf TwelveMonkeys :: ImageIO :: PDF plugin diff --git a/imageio/imageio-pict/pom.xml b/imageio/imageio-pict/pom.xml index 33e18cf0..1b9afc34 100644 --- a/imageio/imageio-pict/pom.xml +++ b/imageio/imageio-pict/pom.xml @@ -4,7 +4,7 @@ com.twelvemonkeys.imageio imageio - 3.3 + 3.3-SNAPSHOT imageio-pict TwelveMonkeys :: ImageIO :: PICT plugin diff --git a/imageio/imageio-pnm/pom.xml b/imageio/imageio-pnm/pom.xml index e25371f0..647d5ae1 100755 --- a/imageio/imageio-pnm/pom.xml +++ b/imageio/imageio-pnm/pom.xml @@ -4,7 +4,7 @@ com.twelvemonkeys.imageio imageio - 3.3 + 3.3-SNAPSHOT imageio-pnm TwelveMonkeys :: ImageIO :: PNM plugin diff --git a/imageio/imageio-psd/pom.xml b/imageio/imageio-psd/pom.xml index 018841b8..c58d19b4 100644 --- a/imageio/imageio-psd/pom.xml +++ b/imageio/imageio-psd/pom.xml @@ -4,7 +4,7 @@ com.twelvemonkeys.imageio imageio - 3.3 + 3.3-SNAPSHOT imageio-psd TwelveMonkeys :: ImageIO :: PSD plugin diff --git a/imageio/imageio-reference/pom.xml b/imageio/imageio-reference/pom.xml index 37d2426b..00899b72 100644 --- a/imageio/imageio-reference/pom.xml +++ b/imageio/imageio-reference/pom.xml @@ -4,7 +4,7 @@ com.twelvemonkeys.imageio imageio - 3.3 + 3.3-SNAPSHOT imageio-reference TwelveMonkeys :: ImageIO :: reference test cases diff --git a/imageio/imageio-sgi/pom.xml b/imageio/imageio-sgi/pom.xml index 08c833ae..0296d502 100755 --- a/imageio/imageio-sgi/pom.xml +++ b/imageio/imageio-sgi/pom.xml @@ -4,7 +4,7 @@ com.twelvemonkeys.imageio imageio - 3.3 + 3.3-SNAPSHOT imageio-sgi TwelveMonkeys :: ImageIO :: SGI plugin diff --git a/imageio/imageio-tga/pom.xml b/imageio/imageio-tga/pom.xml index d7355e8d..2683485a 100755 --- a/imageio/imageio-tga/pom.xml +++ b/imageio/imageio-tga/pom.xml @@ -4,7 +4,7 @@ com.twelvemonkeys.imageio imageio - 3.3 + 3.3-SNAPSHOT imageio-tga TwelveMonkeys :: ImageIO :: TGA plugin diff --git a/imageio/imageio-thumbsdb/pom.xml b/imageio/imageio-thumbsdb/pom.xml index e0112843..7ade94f8 100644 --- a/imageio/imageio-thumbsdb/pom.xml +++ b/imageio/imageio-thumbsdb/pom.xml @@ -4,7 +4,7 @@ com.twelvemonkeys.imageio imageio - 3.3 + 3.3-SNAPSHOT imageio-thumbsdb TwelveMonkeys :: ImageIO :: Thumbs.db plugin diff --git a/imageio/imageio-tiff/pom.xml b/imageio/imageio-tiff/pom.xml index 69508251..11f66f34 100644 --- a/imageio/imageio-tiff/pom.xml +++ b/imageio/imageio-tiff/pom.xml @@ -4,7 +4,7 @@ com.twelvemonkeys.imageio imageio - 3.3 + 3.3-SNAPSHOT imageio-tiff TwelveMonkeys :: ImageIO :: TIFF plugin diff --git a/imageio/pom.xml b/imageio/pom.xml index 0cc79a53..1c30e3b5 100644 --- a/imageio/pom.xml +++ b/imageio/pom.xml @@ -3,7 +3,7 @@ com.twelvemonkeys twelvemonkeys - 3.3 + 3.3-SNAPSHOT 4.0.0 com.twelvemonkeys.imageio diff --git a/pom.xml b/pom.xml index 707dbe95..cb1d24ad 100755 --- a/pom.xml +++ b/pom.xml @@ -8,7 +8,7 @@ com.twelvemonkeys twelvemonkeys - 3.3 + 3.3-SNAPSHOT pom Twelvemonkeys @@ -83,7 +83,7 @@ scm:git:https://github.com/haraldk/TwelveMonkeys scm:git:https://github.com/haraldk/TwelveMonkeys https://github.com/haraldk/TwelveMonkeys - twelvemonkeys-3.3 + HEAD diff --git a/servlet/pom.xml b/servlet/pom.xml index 0e5e7f95..2f2fc663 100644 --- a/servlet/pom.xml +++ b/servlet/pom.xml @@ -3,7 +3,7 @@ com.twelvemonkeys twelvemonkeys - 3.3 + 3.3-SNAPSHOT 4.0.0 From 654e1116054f3db5fbcbab46baa68f623ed508fe Mon Sep 17 00:00:00 2001 From: Harald Kuhr Date: Wed, 2 Nov 2016 19:36:45 +0100 Subject: [PATCH 5/6] [maven-release-plugin] prepare release twelvemonkeys-3.3 --- bom/pom.xml | 2 +- common/common-image/pom.xml | 2 +- common/common-io/pom.xml | 2 +- common/common-lang/pom.xml | 2 +- common/pom.xml | 2 +- contrib/pom.xml | 2 +- imageio/imageio-batik/pom.xml | 2 +- imageio/imageio-bmp/pom.xml | 2 +- imageio/imageio-clippath/pom.xml | 2 +- imageio/imageio-core/pom.xml | 2 +- imageio/imageio-hdr/pom.xml | 2 +- imageio/imageio-icns/pom.xml | 2 +- imageio/imageio-iff/pom.xml | 2 +- imageio/imageio-jpeg/pom.xml | 2 +- imageio/imageio-metadata/pom.xml | 2 +- imageio/imageio-pcx/pom.xml | 2 +- imageio/imageio-pdf/pom.xml | 2 +- imageio/imageio-pict/pom.xml | 2 +- imageio/imageio-pnm/pom.xml | 2 +- imageio/imageio-psd/pom.xml | 2 +- imageio/imageio-reference/pom.xml | 2 +- imageio/imageio-sgi/pom.xml | 2 +- imageio/imageio-tga/pom.xml | 2 +- imageio/imageio-thumbsdb/pom.xml | 2 +- imageio/imageio-tiff/pom.xml | 2 +- imageio/pom.xml | 2 +- pom.xml | 4 ++-- servlet/pom.xml | 2 +- 28 files changed, 29 insertions(+), 29 deletions(-) diff --git a/bom/pom.xml b/bom/pom.xml index a684765c..ddc99a34 100644 --- a/bom/pom.xml +++ b/bom/pom.xml @@ -5,7 +5,7 @@ com.twelvemonkeys twelvemonkeys - 3.3-SNAPSHOT + 3.3 com.twelvemonkeys.bom diff --git a/common/common-image/pom.xml b/common/common-image/pom.xml index 55cfc26c..56324bba 100644 --- a/common/common-image/pom.xml +++ b/common/common-image/pom.xml @@ -4,7 +4,7 @@ com.twelvemonkeys.common common - 3.3-SNAPSHOT + 3.3 common-image jar diff --git a/common/common-io/pom.xml b/common/common-io/pom.xml index b4d3207c..b3363a33 100644 --- a/common/common-io/pom.xml +++ b/common/common-io/pom.xml @@ -4,7 +4,7 @@ com.twelvemonkeys.common common - 3.3-SNAPSHOT + 3.3 common-io jar diff --git a/common/common-lang/pom.xml b/common/common-lang/pom.xml index f3436902..0587ad72 100644 --- a/common/common-lang/pom.xml +++ b/common/common-lang/pom.xml @@ -4,7 +4,7 @@ com.twelvemonkeys.common common - 3.3-SNAPSHOT + 3.3 common-lang jar diff --git a/common/pom.xml b/common/pom.xml index b6b9f6f7..441c617f 100644 --- a/common/pom.xml +++ b/common/pom.xml @@ -4,7 +4,7 @@ com.twelvemonkeys twelvemonkeys - 3.3-SNAPSHOT + 3.3 com.twelvemonkeys.common common diff --git a/contrib/pom.xml b/contrib/pom.xml index 9a73d3c6..2b8ca8ef 100644 --- a/contrib/pom.xml +++ b/contrib/pom.xml @@ -4,7 +4,7 @@ com.twelvemonkeys twelvemonkeys - 3.3-SNAPSHOT + 3.3 com.twelvemonkeys.contrib contrib diff --git a/imageio/imageio-batik/pom.xml b/imageio/imageio-batik/pom.xml index 1f31c074..dba76f01 100644 --- a/imageio/imageio-batik/pom.xml +++ b/imageio/imageio-batik/pom.xml @@ -4,7 +4,7 @@ com.twelvemonkeys.imageio imageio - 3.3-SNAPSHOT + 3.3 imageio-batik TwelveMonkeys :: ImageIO :: Batik Plugin diff --git a/imageio/imageio-bmp/pom.xml b/imageio/imageio-bmp/pom.xml index 8b6aa174..7fcbd45d 100644 --- a/imageio/imageio-bmp/pom.xml +++ b/imageio/imageio-bmp/pom.xml @@ -4,7 +4,7 @@ com.twelvemonkeys.imageio imageio - 3.3-SNAPSHOT + 3.3 imageio-bmp TwelveMonkeys :: ImageIO :: BMP plugin diff --git a/imageio/imageio-clippath/pom.xml b/imageio/imageio-clippath/pom.xml index 85d4852a..c36f9f67 100755 --- a/imageio/imageio-clippath/pom.xml +++ b/imageio/imageio-clippath/pom.xml @@ -4,7 +4,7 @@ com.twelvemonkeys.imageio imageio - 3.3-SNAPSHOT + 3.3 imageio-clippath TwelveMonkeys :: ImageIO :: Photoshop Path Support diff --git a/imageio/imageio-core/pom.xml b/imageio/imageio-core/pom.xml index 3c295d76..51171919 100644 --- a/imageio/imageio-core/pom.xml +++ b/imageio/imageio-core/pom.xml @@ -4,7 +4,7 @@ com.twelvemonkeys.imageio imageio - 3.3-SNAPSHOT + 3.3 imageio-core TwelveMonkeys :: ImageIO :: Core diff --git a/imageio/imageio-hdr/pom.xml b/imageio/imageio-hdr/pom.xml index 20efae92..fbc95e39 100644 --- a/imageio/imageio-hdr/pom.xml +++ b/imageio/imageio-hdr/pom.xml @@ -4,7 +4,7 @@ com.twelvemonkeys.imageio imageio - 3.3-SNAPSHOT + 3.3 imageio-hdr TwelveMonkeys :: ImageIO :: HDR plugin diff --git a/imageio/imageio-icns/pom.xml b/imageio/imageio-icns/pom.xml index 37937b29..521ed191 100644 --- a/imageio/imageio-icns/pom.xml +++ b/imageio/imageio-icns/pom.xml @@ -4,7 +4,7 @@ com.twelvemonkeys.imageio imageio - 3.3-SNAPSHOT + 3.3 imageio-icns TwelveMonkeys :: ImageIO :: ICNS plugin diff --git a/imageio/imageio-iff/pom.xml b/imageio/imageio-iff/pom.xml index 1bac81f2..7172c51d 100644 --- a/imageio/imageio-iff/pom.xml +++ b/imageio/imageio-iff/pom.xml @@ -4,7 +4,7 @@ com.twelvemonkeys.imageio imageio - 3.3-SNAPSHOT + 3.3 imageio-iff TwelveMonkeys :: ImageIO :: IFF plugin diff --git a/imageio/imageio-jpeg/pom.xml b/imageio/imageio-jpeg/pom.xml index 1a2c62e0..ef659d91 100644 --- a/imageio/imageio-jpeg/pom.xml +++ b/imageio/imageio-jpeg/pom.xml @@ -4,7 +4,7 @@ com.twelvemonkeys.imageio imageio - 3.3-SNAPSHOT + 3.3 imageio-jpeg TwelveMonkeys :: ImageIO :: JPEG plugin diff --git a/imageio/imageio-metadata/pom.xml b/imageio/imageio-metadata/pom.xml index 40993b3f..3cc1aee3 100644 --- a/imageio/imageio-metadata/pom.xml +++ b/imageio/imageio-metadata/pom.xml @@ -3,7 +3,7 @@ com.twelvemonkeys.imageio imageio - 3.3-SNAPSHOT + 3.3 4.0.0 imageio-metadata diff --git a/imageio/imageio-pcx/pom.xml b/imageio/imageio-pcx/pom.xml index 0f49aa20..0e631da7 100755 --- a/imageio/imageio-pcx/pom.xml +++ b/imageio/imageio-pcx/pom.xml @@ -4,7 +4,7 @@ com.twelvemonkeys.imageio imageio - 3.3-SNAPSHOT + 3.3 imageio-pcx TwelveMonkeys :: ImageIO :: PCX plugin diff --git a/imageio/imageio-pdf/pom.xml b/imageio/imageio-pdf/pom.xml index 9f19c32e..0737ba8a 100644 --- a/imageio/imageio-pdf/pom.xml +++ b/imageio/imageio-pdf/pom.xml @@ -4,7 +4,7 @@ com.twelvemonkeys.imageio imageio - 3.3-SNAPSHOT + 3.3 imageio-pdf TwelveMonkeys :: ImageIO :: PDF plugin diff --git a/imageio/imageio-pict/pom.xml b/imageio/imageio-pict/pom.xml index 1b9afc34..33e18cf0 100644 --- a/imageio/imageio-pict/pom.xml +++ b/imageio/imageio-pict/pom.xml @@ -4,7 +4,7 @@ com.twelvemonkeys.imageio imageio - 3.3-SNAPSHOT + 3.3 imageio-pict TwelveMonkeys :: ImageIO :: PICT plugin diff --git a/imageio/imageio-pnm/pom.xml b/imageio/imageio-pnm/pom.xml index 647d5ae1..e25371f0 100755 --- a/imageio/imageio-pnm/pom.xml +++ b/imageio/imageio-pnm/pom.xml @@ -4,7 +4,7 @@ com.twelvemonkeys.imageio imageio - 3.3-SNAPSHOT + 3.3 imageio-pnm TwelveMonkeys :: ImageIO :: PNM plugin diff --git a/imageio/imageio-psd/pom.xml b/imageio/imageio-psd/pom.xml index c58d19b4..018841b8 100644 --- a/imageio/imageio-psd/pom.xml +++ b/imageio/imageio-psd/pom.xml @@ -4,7 +4,7 @@ com.twelvemonkeys.imageio imageio - 3.3-SNAPSHOT + 3.3 imageio-psd TwelveMonkeys :: ImageIO :: PSD plugin diff --git a/imageio/imageio-reference/pom.xml b/imageio/imageio-reference/pom.xml index 00899b72..37d2426b 100644 --- a/imageio/imageio-reference/pom.xml +++ b/imageio/imageio-reference/pom.xml @@ -4,7 +4,7 @@ com.twelvemonkeys.imageio imageio - 3.3-SNAPSHOT + 3.3 imageio-reference TwelveMonkeys :: ImageIO :: reference test cases diff --git a/imageio/imageio-sgi/pom.xml b/imageio/imageio-sgi/pom.xml index 0296d502..08c833ae 100755 --- a/imageio/imageio-sgi/pom.xml +++ b/imageio/imageio-sgi/pom.xml @@ -4,7 +4,7 @@ com.twelvemonkeys.imageio imageio - 3.3-SNAPSHOT + 3.3 imageio-sgi TwelveMonkeys :: ImageIO :: SGI plugin diff --git a/imageio/imageio-tga/pom.xml b/imageio/imageio-tga/pom.xml index 2683485a..d7355e8d 100755 --- a/imageio/imageio-tga/pom.xml +++ b/imageio/imageio-tga/pom.xml @@ -4,7 +4,7 @@ com.twelvemonkeys.imageio imageio - 3.3-SNAPSHOT + 3.3 imageio-tga TwelveMonkeys :: ImageIO :: TGA plugin diff --git a/imageio/imageio-thumbsdb/pom.xml b/imageio/imageio-thumbsdb/pom.xml index 7ade94f8..e0112843 100644 --- a/imageio/imageio-thumbsdb/pom.xml +++ b/imageio/imageio-thumbsdb/pom.xml @@ -4,7 +4,7 @@ com.twelvemonkeys.imageio imageio - 3.3-SNAPSHOT + 3.3 imageio-thumbsdb TwelveMonkeys :: ImageIO :: Thumbs.db plugin diff --git a/imageio/imageio-tiff/pom.xml b/imageio/imageio-tiff/pom.xml index 11f66f34..69508251 100644 --- a/imageio/imageio-tiff/pom.xml +++ b/imageio/imageio-tiff/pom.xml @@ -4,7 +4,7 @@ com.twelvemonkeys.imageio imageio - 3.3-SNAPSHOT + 3.3 imageio-tiff TwelveMonkeys :: ImageIO :: TIFF plugin diff --git a/imageio/pom.xml b/imageio/pom.xml index 1c30e3b5..0cc79a53 100644 --- a/imageio/pom.xml +++ b/imageio/pom.xml @@ -3,7 +3,7 @@ com.twelvemonkeys twelvemonkeys - 3.3-SNAPSHOT + 3.3 4.0.0 com.twelvemonkeys.imageio diff --git a/pom.xml b/pom.xml index cb1d24ad..707dbe95 100755 --- a/pom.xml +++ b/pom.xml @@ -8,7 +8,7 @@ com.twelvemonkeys twelvemonkeys - 3.3-SNAPSHOT + 3.3 pom Twelvemonkeys @@ -83,7 +83,7 @@ scm:git:https://github.com/haraldk/TwelveMonkeys scm:git:https://github.com/haraldk/TwelveMonkeys https://github.com/haraldk/TwelveMonkeys - HEAD + twelvemonkeys-3.3 diff --git a/servlet/pom.xml b/servlet/pom.xml index 2f2fc663..0e5e7f95 100644 --- a/servlet/pom.xml +++ b/servlet/pom.xml @@ -3,7 +3,7 @@ com.twelvemonkeys twelvemonkeys - 3.3-SNAPSHOT + 3.3 4.0.0 From aff252f278bfc15464278cd8409f4133d2f56d6f Mon Sep 17 00:00:00 2001 From: Harald Kuhr Date: Wed, 2 Nov 2016 19:37:07 +0100 Subject: [PATCH 6/6] [maven-release-plugin] prepare for next development iteration --- bom/pom.xml | 2 +- common/common-image/pom.xml | 2 +- common/common-io/pom.xml | 2 +- common/common-lang/pom.xml | 2 +- common/pom.xml | 2 +- contrib/pom.xml | 2 +- imageio/imageio-batik/pom.xml | 2 +- imageio/imageio-bmp/pom.xml | 2 +- imageio/imageio-clippath/pom.xml | 2 +- imageio/imageio-core/pom.xml | 2 +- imageio/imageio-hdr/pom.xml | 2 +- imageio/imageio-icns/pom.xml | 2 +- imageio/imageio-iff/pom.xml | 2 +- imageio/imageio-jpeg/pom.xml | 2 +- imageio/imageio-metadata/pom.xml | 2 +- imageio/imageio-pcx/pom.xml | 2 +- imageio/imageio-pdf/pom.xml | 2 +- imageio/imageio-pict/pom.xml | 2 +- imageio/imageio-pnm/pom.xml | 2 +- imageio/imageio-psd/pom.xml | 2 +- imageio/imageio-reference/pom.xml | 2 +- imageio/imageio-sgi/pom.xml | 2 +- imageio/imageio-tga/pom.xml | 2 +- imageio/imageio-thumbsdb/pom.xml | 2 +- imageio/imageio-tiff/pom.xml | 2 +- imageio/pom.xml | 2 +- pom.xml | 4 ++-- servlet/pom.xml | 2 +- 28 files changed, 29 insertions(+), 29 deletions(-) diff --git a/bom/pom.xml b/bom/pom.xml index ddc99a34..42a7ed3c 100644 --- a/bom/pom.xml +++ b/bom/pom.xml @@ -5,7 +5,7 @@ com.twelvemonkeys twelvemonkeys - 3.3 + 3.4-SNAPSHOT com.twelvemonkeys.bom diff --git a/common/common-image/pom.xml b/common/common-image/pom.xml index 56324bba..cdef6ab4 100644 --- a/common/common-image/pom.xml +++ b/common/common-image/pom.xml @@ -4,7 +4,7 @@ com.twelvemonkeys.common common - 3.3 + 3.4-SNAPSHOT common-image jar diff --git a/common/common-io/pom.xml b/common/common-io/pom.xml index b3363a33..19f61ccc 100644 --- a/common/common-io/pom.xml +++ b/common/common-io/pom.xml @@ -4,7 +4,7 @@ com.twelvemonkeys.common common - 3.3 + 3.4-SNAPSHOT common-io jar diff --git a/common/common-lang/pom.xml b/common/common-lang/pom.xml index 0587ad72..79316441 100644 --- a/common/common-lang/pom.xml +++ b/common/common-lang/pom.xml @@ -4,7 +4,7 @@ com.twelvemonkeys.common common - 3.3 + 3.4-SNAPSHOT common-lang jar diff --git a/common/pom.xml b/common/pom.xml index 441c617f..eb530041 100644 --- a/common/pom.xml +++ b/common/pom.xml @@ -4,7 +4,7 @@ com.twelvemonkeys twelvemonkeys - 3.3 + 3.4-SNAPSHOT com.twelvemonkeys.common common diff --git a/contrib/pom.xml b/contrib/pom.xml index 2b8ca8ef..f50aac23 100644 --- a/contrib/pom.xml +++ b/contrib/pom.xml @@ -4,7 +4,7 @@ com.twelvemonkeys twelvemonkeys - 3.3 + 3.4-SNAPSHOT com.twelvemonkeys.contrib contrib diff --git a/imageio/imageio-batik/pom.xml b/imageio/imageio-batik/pom.xml index dba76f01..39ca0cdb 100644 --- a/imageio/imageio-batik/pom.xml +++ b/imageio/imageio-batik/pom.xml @@ -4,7 +4,7 @@ com.twelvemonkeys.imageio imageio - 3.3 + 3.4-SNAPSHOT imageio-batik TwelveMonkeys :: ImageIO :: Batik Plugin diff --git a/imageio/imageio-bmp/pom.xml b/imageio/imageio-bmp/pom.xml index 7fcbd45d..e4a24e22 100644 --- a/imageio/imageio-bmp/pom.xml +++ b/imageio/imageio-bmp/pom.xml @@ -4,7 +4,7 @@ com.twelvemonkeys.imageio imageio - 3.3 + 3.4-SNAPSHOT imageio-bmp TwelveMonkeys :: ImageIO :: BMP plugin diff --git a/imageio/imageio-clippath/pom.xml b/imageio/imageio-clippath/pom.xml index c36f9f67..45ba89f4 100755 --- a/imageio/imageio-clippath/pom.xml +++ b/imageio/imageio-clippath/pom.xml @@ -4,7 +4,7 @@ com.twelvemonkeys.imageio imageio - 3.3 + 3.4-SNAPSHOT imageio-clippath TwelveMonkeys :: ImageIO :: Photoshop Path Support diff --git a/imageio/imageio-core/pom.xml b/imageio/imageio-core/pom.xml index 51171919..34e815db 100644 --- a/imageio/imageio-core/pom.xml +++ b/imageio/imageio-core/pom.xml @@ -4,7 +4,7 @@ com.twelvemonkeys.imageio imageio - 3.3 + 3.4-SNAPSHOT imageio-core TwelveMonkeys :: ImageIO :: Core diff --git a/imageio/imageio-hdr/pom.xml b/imageio/imageio-hdr/pom.xml index fbc95e39..985c48f7 100644 --- a/imageio/imageio-hdr/pom.xml +++ b/imageio/imageio-hdr/pom.xml @@ -4,7 +4,7 @@ com.twelvemonkeys.imageio imageio - 3.3 + 3.4-SNAPSHOT imageio-hdr TwelveMonkeys :: ImageIO :: HDR plugin diff --git a/imageio/imageio-icns/pom.xml b/imageio/imageio-icns/pom.xml index 521ed191..9a76609e 100644 --- a/imageio/imageio-icns/pom.xml +++ b/imageio/imageio-icns/pom.xml @@ -4,7 +4,7 @@ com.twelvemonkeys.imageio imageio - 3.3 + 3.4-SNAPSHOT imageio-icns TwelveMonkeys :: ImageIO :: ICNS plugin diff --git a/imageio/imageio-iff/pom.xml b/imageio/imageio-iff/pom.xml index 7172c51d..0c5176f1 100644 --- a/imageio/imageio-iff/pom.xml +++ b/imageio/imageio-iff/pom.xml @@ -4,7 +4,7 @@ com.twelvemonkeys.imageio imageio - 3.3 + 3.4-SNAPSHOT imageio-iff TwelveMonkeys :: ImageIO :: IFF plugin diff --git a/imageio/imageio-jpeg/pom.xml b/imageio/imageio-jpeg/pom.xml index ef659d91..913c4426 100644 --- a/imageio/imageio-jpeg/pom.xml +++ b/imageio/imageio-jpeg/pom.xml @@ -4,7 +4,7 @@ com.twelvemonkeys.imageio imageio - 3.3 + 3.4-SNAPSHOT imageio-jpeg TwelveMonkeys :: ImageIO :: JPEG plugin diff --git a/imageio/imageio-metadata/pom.xml b/imageio/imageio-metadata/pom.xml index 3cc1aee3..659f5428 100644 --- a/imageio/imageio-metadata/pom.xml +++ b/imageio/imageio-metadata/pom.xml @@ -3,7 +3,7 @@ com.twelvemonkeys.imageio imageio - 3.3 + 3.4-SNAPSHOT 4.0.0 imageio-metadata diff --git a/imageio/imageio-pcx/pom.xml b/imageio/imageio-pcx/pom.xml index 0e631da7..f775b43d 100755 --- a/imageio/imageio-pcx/pom.xml +++ b/imageio/imageio-pcx/pom.xml @@ -4,7 +4,7 @@ com.twelvemonkeys.imageio imageio - 3.3 + 3.4-SNAPSHOT imageio-pcx TwelveMonkeys :: ImageIO :: PCX plugin diff --git a/imageio/imageio-pdf/pom.xml b/imageio/imageio-pdf/pom.xml index 0737ba8a..1ccf8f17 100644 --- a/imageio/imageio-pdf/pom.xml +++ b/imageio/imageio-pdf/pom.xml @@ -4,7 +4,7 @@ com.twelvemonkeys.imageio imageio - 3.3 + 3.4-SNAPSHOT imageio-pdf TwelveMonkeys :: ImageIO :: PDF plugin diff --git a/imageio/imageio-pict/pom.xml b/imageio/imageio-pict/pom.xml index 33e18cf0..758bff49 100644 --- a/imageio/imageio-pict/pom.xml +++ b/imageio/imageio-pict/pom.xml @@ -4,7 +4,7 @@ com.twelvemonkeys.imageio imageio - 3.3 + 3.4-SNAPSHOT imageio-pict TwelveMonkeys :: ImageIO :: PICT plugin diff --git a/imageio/imageio-pnm/pom.xml b/imageio/imageio-pnm/pom.xml index e25371f0..b36295f6 100755 --- a/imageio/imageio-pnm/pom.xml +++ b/imageio/imageio-pnm/pom.xml @@ -4,7 +4,7 @@ com.twelvemonkeys.imageio imageio - 3.3 + 3.4-SNAPSHOT imageio-pnm TwelveMonkeys :: ImageIO :: PNM plugin diff --git a/imageio/imageio-psd/pom.xml b/imageio/imageio-psd/pom.xml index 018841b8..9eb4a91d 100644 --- a/imageio/imageio-psd/pom.xml +++ b/imageio/imageio-psd/pom.xml @@ -4,7 +4,7 @@ com.twelvemonkeys.imageio imageio - 3.3 + 3.4-SNAPSHOT imageio-psd TwelveMonkeys :: ImageIO :: PSD plugin diff --git a/imageio/imageio-reference/pom.xml b/imageio/imageio-reference/pom.xml index 37d2426b..94ad0bf7 100644 --- a/imageio/imageio-reference/pom.xml +++ b/imageio/imageio-reference/pom.xml @@ -4,7 +4,7 @@ com.twelvemonkeys.imageio imageio - 3.3 + 3.4-SNAPSHOT imageio-reference TwelveMonkeys :: ImageIO :: reference test cases diff --git a/imageio/imageio-sgi/pom.xml b/imageio/imageio-sgi/pom.xml index 08c833ae..4fe7bb94 100755 --- a/imageio/imageio-sgi/pom.xml +++ b/imageio/imageio-sgi/pom.xml @@ -4,7 +4,7 @@ com.twelvemonkeys.imageio imageio - 3.3 + 3.4-SNAPSHOT imageio-sgi TwelveMonkeys :: ImageIO :: SGI plugin diff --git a/imageio/imageio-tga/pom.xml b/imageio/imageio-tga/pom.xml index d7355e8d..9e1ead30 100755 --- a/imageio/imageio-tga/pom.xml +++ b/imageio/imageio-tga/pom.xml @@ -4,7 +4,7 @@ com.twelvemonkeys.imageio imageio - 3.3 + 3.4-SNAPSHOT imageio-tga TwelveMonkeys :: ImageIO :: TGA plugin diff --git a/imageio/imageio-thumbsdb/pom.xml b/imageio/imageio-thumbsdb/pom.xml index e0112843..1a60813d 100644 --- a/imageio/imageio-thumbsdb/pom.xml +++ b/imageio/imageio-thumbsdb/pom.xml @@ -4,7 +4,7 @@ com.twelvemonkeys.imageio imageio - 3.3 + 3.4-SNAPSHOT imageio-thumbsdb TwelveMonkeys :: ImageIO :: Thumbs.db plugin diff --git a/imageio/imageio-tiff/pom.xml b/imageio/imageio-tiff/pom.xml index 69508251..7fc02cce 100644 --- a/imageio/imageio-tiff/pom.xml +++ b/imageio/imageio-tiff/pom.xml @@ -4,7 +4,7 @@ com.twelvemonkeys.imageio imageio - 3.3 + 3.4-SNAPSHOT imageio-tiff TwelveMonkeys :: ImageIO :: TIFF plugin diff --git a/imageio/pom.xml b/imageio/pom.xml index 0cc79a53..bef7d32d 100644 --- a/imageio/pom.xml +++ b/imageio/pom.xml @@ -3,7 +3,7 @@ com.twelvemonkeys twelvemonkeys - 3.3 + 3.4-SNAPSHOT 4.0.0 com.twelvemonkeys.imageio diff --git a/pom.xml b/pom.xml index 707dbe95..db48b399 100755 --- a/pom.xml +++ b/pom.xml @@ -8,7 +8,7 @@ com.twelvemonkeys twelvemonkeys - 3.3 + 3.4-SNAPSHOT pom Twelvemonkeys @@ -83,7 +83,7 @@ scm:git:https://github.com/haraldk/TwelveMonkeys scm:git:https://github.com/haraldk/TwelveMonkeys https://github.com/haraldk/TwelveMonkeys - twelvemonkeys-3.3 + HEAD diff --git a/servlet/pom.xml b/servlet/pom.xml index 0e5e7f95..fdf7a8ff 100644 --- a/servlet/pom.xml +++ b/servlet/pom.xml @@ -3,7 +3,7 @@ com.twelvemonkeys twelvemonkeys - 3.3 + 3.4-SNAPSHOT 4.0.0