Files
postgres-json/build.gradle
Fabrice Lecomte ebc1a67420 Implement begining of migration
Move Function/Query definition
2019-06-28 15:58:51 +02:00

42 lines
889 B
Groovy

plugins {
id 'maven-publish'
id 'org.jetbrains.kotlin.jvm' version '1.3.31'
}
apply plugin: 'kotlin'
group 'fr.postgresjson'
version '0.1'
repositories {
mavenCentral()
jcenter()
}
dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8"
implementation "org.jetbrains.kotlin:kotlin-reflect:1.3.31"
implementation "com.fasterxml.jackson.module:jackson-module-kotlin:2.9.9"
implementation "com.github.jasync-sql:jasync-postgresql:0.9.53"
testImplementation "io.mockk:mockk:1.9"
testImplementation "org.junit.jupiter:junit-jupiter:5.4.2"
testImplementation 'org.amshove.kluent:kluent:1.47'
}
compileKotlin {
kotlinOptions.jvmTarget = "1.8"
}
compileTestKotlin {
kotlinOptions.jvmTarget = "1.8"
}
publishing {
publications {
mavenJava(MavenPublication) {
from components.java
}
}
}