mirror of
https://github.com/OpenAPITools/openapi-generator.git
synced 2025-05-30 13:30:52 +00:00
* [ktorm] added support for ktorm * [ktorm] fixed type mapping * [ktorm] fixed foreign key * [ktorm] added variable for the missing package import * [ktorm] added correct templates * [ktorm] added relationship metadata * [ktorm] also support relationships 1:m * [ktorm] relation to primitive naming fix * [ktorm] updated mustache templates * [ktorm] small fixes on templates, assigmentbuilder, docs, sql script syntax. * fix issue, rename to ktorm-schema * replace tabs with 4 spaces * [ktorm] added primarykey automatic generation * [ktorm] added tests * [ktorm] added gradle to samples * [ktorm] fix datatime type * [ktorm] template fixes array and primarykey * [ktorm][sample] regenerate * [ktorm][sample] added manually files from kotlin-client We inherit from baseTable, so we need those for now * [ktorm] fix: relation column types hardcoded * update samples * update doc Co-authored-by: William Cheng <wing328hk@gmail.com>
36 lines
791 B
Groovy
36 lines
791 B
Groovy
group 'org.openapitools'
|
|
version '1.0.0'
|
|
|
|
wrapper {
|
|
gradleVersion = '4.9'
|
|
distributionUrl = "https://services.gradle.org/distributions/gradle-$gradleVersion-all.zip"
|
|
}
|
|
|
|
buildscript {
|
|
ext.kotlin_version = '1.3.72'
|
|
ext.ktorm_version = '3.2.0'
|
|
|
|
repositories {
|
|
maven { url "https://repo1.maven.org/maven2" }
|
|
}
|
|
dependencies {
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
|
}
|
|
}
|
|
|
|
apply plugin: 'kotlin'
|
|
|
|
repositories {
|
|
maven { url "https://repo1.maven.org/maven2" }
|
|
}
|
|
|
|
test {
|
|
useJUnitPlatform()
|
|
}
|
|
|
|
dependencies {
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
|
|
implementation "org.ktorm:ktorm-core:$ktorm_version"
|
|
testImplementation "io.kotlintest:kotlintest-runner-junit5:3.1.0"
|
|
}
|