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 {
|
2019-01-25 22:32:53 +00:00
|
|
|
compile("com.squareup:javapoet:${Versions.javaPoet}")
|
2019-01-25 20:20:30 +00:00
|
|
|
compile("org.jetbrains.kotlin:kotlin-stdlib-jdk8")
|
2019-01-25 22:32:53 +00:00
|
|
|
testCompile("org.junit.jupiter:junit-jupiter-engine:${Versions.junit}")
|
|
|
|
testCompile("com.google.testing.compile:compile-testing:${Versions.compilerTesting}")
|
2019-01-25 20:20:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
tasks {
|
|
|
|
|
|
|
|
test {
|
|
|
|
useJUnitPlatform()
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|