2019-01-25 20:20:30 +00:00
|
|
|
|
|
|
|
plugins {
|
|
|
|
`java-library`
|
2019-01-31 01:13:06 +00:00
|
|
|
id("org.jetbrains.kotlin.jvm") version Versions.kotlinPlugin
|
|
|
|
id("com.adarshr.test-logger") version Versions.testLoggerPlugin
|
2019-01-25 20:20:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
group = "com.impossibl.pgjdbc-ng.tools"
|
|
|
|
description = "PostgreSQL JDBC - NG - Settings Processor"
|
|
|
|
|
|
|
|
|
|
|
|
dependencies {
|
2021-04-01 22:32:46 +00:00
|
|
|
implementation("com.squareup:javapoet:${Versions.javaPoet}")
|
|
|
|
implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8")
|
|
|
|
testImplementation("org.junit.jupiter:junit-jupiter-engine:${Versions.junit}")
|
|
|
|
testImplementation("com.google.testing.compile:compile-testing:${Versions.compilerTesting}")
|
2019-01-25 20:20:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
tasks {
|
|
|
|
|
|
|
|
test {
|
|
|
|
useJUnitPlatform()
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
2023-11-10 00:45:53 +00:00
|
|
|
|
|
|
|
kotlin {
|
|
|
|
jvmToolchain(Versions.javaTarget.majorVersion.toInt())
|
|
|
|
}
|