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

org.codehaus.enunciate.ThreadSafety Maven / Gradle / Ivy

package org.codehaus.enunciate;

/**
 * Thread safety object lock to cater for Maven 3 Parallel builds
 * to force synchronisation between mojos as the Enunciate core currently is
 * not thread-safe.
 *
 * @author Ryan Heaton
 */
public class ThreadSafety {

  public static final ThreadSafety lock = new ThreadSafety();

  private ThreadSafety() {
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy