documentation home

General

Organization Id

Miredot needs your organization id in order to identify your account. You can get your id by signing in to my.miredot.

Every project that uses your organization id will appear on that organization's dashboard. You can create multiple organizations to group projects and choose different subscription plans.

Never share or publish this organization id!

Maven
<configuration>
    <organizationId><!--insert id here--></organizationId>
</configuration>
Gradle
miredot {
    organizationId = /*insert id here (as string between quotes '')*/
}

Fail the build on error

By default, Miredot wil never fail your build. Even when Miredot itself crashed, the build will pass.

You can modify this behavior using the failBuildOnCriticalError parameter.

Maven
<configuration>
    <failBuildOnCriticalError>true</failBuildOnCriticalError>
</configuration>
Gradle
miredot {
    failBuildOnCriticalError = true
}