12345678910111213141516171819202122232425262728293031323334 |
- plugins {
- id 'org.jetbrains.kotlin.jvm' version '1.3.60'
- }
- group 'com.example'
- version '1.0-SNAPSHOT'
- repositories {
- mavenCentral()
- }
- dependencies {
- implementation 'mysql:mysql-connector-java:8.0.22'
- implementation 'org.postgresql:postgresql:42.2.9'
- implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8"
- testImplementation 'org.junit.jupiter:junit-jupiter-api:5.6.0'
- testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.6.0'
- }
- test {
- useJUnitPlatform()
- }
- compileKotlin {
- kotlinOptions.jvmTarget = "1.8"
- }
- compileTestKotlin {
- kotlinOptions.jvmTarget = "1.8"
- }
- buildScan {
- termsOfServiceUrl = "https://gradle.com/terms-of-service"
- termsOfServiceAgree = "yes"
- }
|