Skip to content

Doma 2.30.0 Migration Guide

Toshihiro Nakamura edited this page Sep 29, 2024 · 1 revision

In this page, we show you how to migrate from Doma 2.29.0 to Doma 2.30.0.

Change artifact names

Now we provide two artifacts, doma-core and doma-processor.
Change the dependencies configuration in your build tools.

Gradle

Using Doma 2.29.0

dependencies {
    annotationProcessor "org.seasar.doma:doma:2.29.0"
    implementation "org.seasar.doma:doma:2.29.0"
}

Using Doma 2.30.0

dependencies {
    annotationProcessor "org.seasar.doma:doma-processor:2.30.0"
    implementation "org.seasar.doma:doma-core:2.30.0"
}

For Kotlin projects, use kapt in place of annotationProcessor.

IDEA

Change your Gradle build script and import it.

Eclipse

Change your Gradle build script and generate eclipse setting files.

Clone this wiki locally