Package Name Changed to org.ktorm
Finally, we have our own domain and the official website becomes https://www.ktorm.org
Accordingly, starting from Ktorm 3.2, we have changed our group ID to org.ktorm
, so you need to modify your Maven dependency:
<dependency>
<groupId>org.ktorm</groupId>
<artifactId>ktorm-core</artifactId>
<version>3.2.0</version>
</dependency>
Or Gradle:
compile "org.ktorm:ktorm-core:3.2.0"
Package names are also changed to org.ktorm.*
, so you also need to modify your import
statements:
import org.ktorm.database.*
import org.ktorm.dsl.*
import org.ktorm.entity.*
import org.ktorm.schema.*
With the only two steps, you have completed all the migration work to version 3.2. Everything should work well as there are no other changes apart from this.