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

com.github.mcheely.maven.requirejs.ExitStatus Maven / Gradle / Ivy

package com.github.mcheely.maven.requirejs;

public class ExitStatus {
  private int exitCode;

public int getExitCode() {
  return exitCode;
}

public void setExitCode(int exitCode) {
  this.exitCode = exitCode;
}

public boolean success() {
  return (this.exitCode == 0);
}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy