documentation home

Migrate from v1.6.x to v2.0

Miredot 2.0 introduces online builds and now operates with a global organization-id instead of a per-project license key. You can get your organization id on my.miredot.

Maven
<configuration>
    <license><!--insert license key here--></license>
</configuration>

Ë

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

Ë

miredot {
    organizationId = /*insert organization-id here (as string between quotes '')*/
}