MyGit

v3.2.0

kotlin-orm/ktorm

版本发布时间: 2020-10-08 21:30:53

kotlin-orm/ktorm最新发布版本:v4.1.1(2024-09-03 11:39:09)

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.

相关地址:原始地址 下载(tar) 下载(zip)

查看:2020-10-08发行的版本