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

com.carrotsearch.ant.tasks.junit4.NonEmptyWorkDirectoryAction Maven / Gradle / Ivy

package com.carrotsearch.ant.tasks.junit4;

public enum NonEmptyWorkDirectoryAction {
  /** Ignore any existing files in the work directory. */
  IGNORE,
  
  /** 
   * Wipe the content of the work directory clean if there are any files in it.
   * Failure to delete any of the files will cause a build error.
   */
  WIPE,
  
  /**
   * Fail the build if the work directory is not empty. 
   */
  FAIL;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy