All Downloads are FREE. Search and download functionalities are using the official Maven repository.

de.gesellix.gradle.debian.tasks.jdeb.GzipOutputStream.groovy Maven / Gradle / Ivy

package de.gesellix.gradle.debian.tasks.jdeb

import java.util.zip.GZIPOutputStream

class GzipOutputStream extends GZIPOutputStream {

  GzipOutputStream(OutputStream out) throws IOException {
    super(out)
  }

  def setLevel(int compressionLevel) {
    this.def.setLevel(compressionLevel)
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy