Class BuildSettings

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Cloneable

    public class BuildSettings
    extends java.lang.Object
    implements java.io.Serializable, java.lang.Cloneable
    Basic build settings.
    Version:
    $Revision$ $Date$
    See Also:
    Serialized Form
    • Constructor Summary

      Constructors 
      Constructor Description
      BuildSettings()  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      BuildSettings clone()
      Method clone.
      java.lang.String getCompilerSource()
      Get compatibility version of Java sources in the reactor.
      java.lang.Boolean isDebug()
      Get whether detailed debugging information about the build process should be logged.
      java.lang.Boolean isSkipTests()
      Get whether compilation and execution of unit and integration tests should be skipped.
      void setCompilerSource​(java.lang.String compilerSource)
      Set compatibility version of Java sources in the reactor.
      void setDebug​(java.lang.Boolean debug)
      Set whether detailed debugging information about the build process should be logged.
      void setSkipTests​(java.lang.Boolean skipTests)
      Set whether compilation and execution of unit and integration tests should be skipped.
      • Methods inherited from class java.lang.Object

        equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • BuildSettings

        public BuildSettings()
    • Method Detail

      • clone

        public BuildSettings clone()
        Method clone.
        Overrides:
        clone in class java.lang.Object
        Returns:
        BuildSettings
      • getCompilerSource

        public java.lang.String getCompilerSource()
        Get compatibility version of Java sources in the reactor. If not specified then it defaults to 1.6 or whatever is specified in configuration of Maven Compiler Plugin.
        Returns:
        String
      • isDebug

        public java.lang.Boolean isDebug()
        Get whether detailed debugging information about the build process should be logged.
        Returns:
        Boolean
      • isSkipTests

        public java.lang.Boolean isSkipTests()
        Get whether compilation and execution of unit and integration tests should be skipped.
        Returns:
        Boolean
      • setCompilerSource

        public void setCompilerSource​(java.lang.String compilerSource)
        Set compatibility version of Java sources in the reactor. If not specified then it defaults to 1.6 or whatever is specified in configuration of Maven Compiler Plugin.
        Parameters:
        compilerSource -
      • setDebug

        public void setDebug​(java.lang.Boolean debug)
        Set whether detailed debugging information about the build process should be logged.
        Parameters:
        debug -
      • setSkipTests

        public void setSkipTests​(java.lang.Boolean skipTests)
        Set whether compilation and execution of unit and integration tests should be skipped.
        Parameters:
        skipTests -