erlang:dialyzer-release

Full name:

eu.lindenbaum:maven-erlang-plugin:2.0.0:dialyzer-release

Description:

This Mojo runs the erlang dialyzer tool on the release dependencies. The dialyzer can be skipped using the skipDialyzer parameter.

Attributes:

  • Requires a Maven 2.0 project to be executed.
  • Binds by default to the lifecycle phase: compile.

Optional Parameters

Name Type Since Description
cookie String - The cookie to use for the java and the backend node.
dialyzerOptions String - Additional dialyzer warning options. This must be a comma separated list with valid warning atoms that will be included when calling dialyzer:run([{warnings,[...]}, ...]).
dialyzerWarningsAreErrors boolean - Setting this to true will break the build when a dialyzer run returns warnings.
Default value is: false.
erlCommand String - The erlang command used to start an erlang backend node. The path must exist and the destination must be executable. If the given command does not fullfill these requirements erl is used (assuming the command is part of the hosts PATH). The path must not contain any arguments.
skipDialyzer boolean - Setting this to true will skip the dialyzer analysis.
Default value is: false.

Parameter Details

cookie:

The cookie to use for the java and the backend node.
  • Type: java.lang.String
  • Required: No
  • Expression: ${cookie}

dialyzerOptions:

Additional dialyzer warning options. This must be a comma separated list with valid warning atoms that will be included when calling dialyzer:run([{warnings,[...]}, ...]).
  • Type: java.lang.String
  • Required: No
  • Expression: ${dialyzerOptions}

dialyzerWarningsAreErrors:

Setting this to true will break the build when a dialyzer run returns warnings.
  • Type: boolean
  • Required: No
  • Expression: ${dialyzerWarningsAreErrors}
  • Default: false

erlCommand:

The erlang command used to start an erlang backend node. The path must exist and the destination must be executable. If the given command does not fullfill these requirements erl is used (assuming the command is part of the hosts PATH). The path must not contain any arguments.
  • Type: java.lang.String
  • Required: No
  • Expression: ${erlCommand}

skipDialyzer:

Setting this to true will skip the dialyzer analysis.
  • Type: boolean
  • Required: No
  • Expression: ${skipDialyzer}
  • Default: false