net.stickycode.plugin.bounds.StickySerializer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bounds-maven-plugin Show documentation
Show all versions of bounds-maven-plugin Show documentation
A maven plugin to update version range bounds
package net.stickycode.plugin.bounds;
import java.io.FileOutputStream;
import java.io.UnsupportedEncodingException;
import nu.xom.Serializer;
/**
* TODO figure out how to not reorder attributes and put them on one line
*/
public class StickySerializer
extends Serializer {
public StickySerializer(FileOutputStream fileOutputStream, String string) throws UnsupportedEncodingException {
super(fileOutputStream, string);
}
}