Class GenerateEventFlowSourceMojo

java.lang.Object
org.apache.maven.plugin.AbstractMojo
com.tibco.ep.buildmavenplugin.BaseGenerateMojo
com.tibco.ep.buildmavenplugin.GenerateEventFlowSourceMojo
All Implemented Interfaces:
org.apache.maven.plugin.ContextEnabled, org.apache.maven.plugin.Mojo

@Mojo(name="generate-main-eventflow", defaultPhase=GENERATE_SOURCES, threadSafe=false) public class GenerateEventFlowSourceMojo extends BaseGenerateMojo

Typecheck EventFlows and generate java sources

The plugin will scan the configured EventFlow source directories and typecheck/build them in the dependency order, reporting any typecheck failure.

It does not build the generated java sources, this is done using a standard maven compiler plugin execution.

The plugin keeps track of individual SBAPP/SBINT dependencies and will trigger or skip a a rebuild accordingly.

SBAPPs and SBINTs have public interfaces and private implementation details. The public interface is composed of anything that another SBAPP/SBINT can import. Schemas, Streams, QueryTable, Constants are part of the public interface. Everything else (Module operators, etc) is private.

If an EventFlow A depends on another EventFlow B and A and B are in the same fragment, then, upon a change on B's public interface, the plugin will rebuild B, then A. Upon a change on B's implementation only, the plugin will only rebuild B.

If an EventFlow A depends on another EventFlow B and A and B are in different fragments, the plugin will only trigger a rebuild of A if the rebuild of B has happened and is installed in the maven repository (i.e. if the fragment containing B has been rebuilt successfully).

EventFlow builds are shared between Studio and the Maven command line. A fragment built using the command line will not get rebuilt by Studio and vice-versa. A Maven clean or the removal of the default *target* directory will force a rebuild on the next call.

  • Field Details

    • DEFAULT_SRC_MAIN_EVENTFLOW

      public static final String DEFAULT_SRC_MAIN_EVENTFLOW
      See Also:
    • DEFAULT_SRC_TEST_EVENTFLOW

      public static final String DEFAULT_SRC_TEST_EVENTFLOW
      See Also:
    • TESTCASESFOUND_PROPERTY

      protected static String TESTCASESFOUND_PROPERTY
      maven property to use to skip start/stop/tests if no tests exist
    • APPLICATION_TYPE

      protected static String APPLICATION_TYPE
      Application packaging and type
    • JAVA_TYPE

      protected static String JAVA_TYPE
      Java packaging and type
    • EVENTFLOW_TYPE

      protected static String EVENTFLOW_TYPE
      EventFlow packaging and type
    • LIVEVIEW_TYPE

      protected static String LIVEVIEW_TYPE
      LiveView packaging and type
    • TCS_TYPE

      protected static String TCS_TYPE
      Streaming Web flow packaging and type
    • REPORTS_DIRECTORY

      protected static String REPORTS_DIRECTORY
      system property for reports
    • IMPORT_DIRECTORY

      protected static String IMPORT_DIRECTORY
      Directory used to import other Eventflow fragments
  • Constructor Details

    • GenerateEventFlowSourceMojo

      public GenerateEventFlowSourceMojo()
      Public constructor
  • Method Details

    • getAdminService

      public IRuntimeAdminService getAdminService()
      Returns:
      The administration service
    • getBuildService

      public IRuntimeBuildService getBuildService()
      Returns:
      The build service
    • getContext

      public IContext getContext()
      Returns:
      The Runtime Administration context
    • prechecks

      public void prechecks()
      Check environment before running mojo