mirror of
https://github.com/github/codeql.git
synced 2025-12-16 16:53:25 +01:00
24 lines
519 B
Groovy
24 lines
519 B
Groovy
plugins {
|
|
id 'org.jetbrains.kotlin.jvm' version "${kotlinVersion}"
|
|
id 'org.jetbrains.dokka' version '1.4.32'
|
|
id "com.vanniktech.maven.publish" version '0.15.1'
|
|
}
|
|
|
|
group 'com.github.codeql'
|
|
version '0.0.1'
|
|
|
|
dependencies {
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib"
|
|
compileOnly("org.jetbrains.kotlin:kotlin-compiler")
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
tasks.withType(org.jetbrains.kotlin.gradle.tasks.KotlinCompile).configureEach {
|
|
kotlinOptions {
|
|
jvmTarget = "1.8"
|
|
}
|
|
}
|