-
-
Notifications
You must be signed in to change notification settings - Fork 70
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.
Now we provide two artifacts, doma-core and doma-processor.
Change the dependencies configuration in your build tools.
dependencies {
annotationProcessor "org.seasar.doma:doma:2.29.0"
implementation "org.seasar.doma:doma:2.29.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.
Change your Gradle build script and import it.
Change your Gradle build script and generate eclipse setting files.