Kotlin: Add explorer · itsallaboutpython/codeql@2c5a291 · GitHub
Skip to content

Commit 2c5a291

Browse files
committed
Kotlin: Add explorer
1 parent 5749dbf commit 2c5a291

5 files changed

Lines changed: 269 additions & 0 deletions

File tree

java/kotlin-explorer/README

Lines changed: 9 additions & 0 deletions

java/kotlin-explorer/build.gradle

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
plugins {
2+
id 'org.jetbrains.kotlin.jvm' version "${kotlinVersion}"
3+
id 'org.jetbrains.dokka' version '1.4.32'
4+
id "com.vanniktech.maven.publish" version '0.15.1'
5+
id 'application'
6+
}
7+
8+
group 'com.github.codeql'
9+
version '0.0.1'
10+
11+
dependencies {
12+
implementation "org.jetbrains.kotlin:kotlin-stdlib"
13+
implementation "org.jetbrains.kotlinx:kotlinx-metadata-jvm:0.3.0"
14+
}
15+
16+
repositories {
17+
mavenCentral()
18+
}
19+
20+
tasks.withType(org.jetbrains.kotlin.gradle.tasks.KotlinCompile).configureEach {
21+
kotlinOptions {
22+
jvmTarget = "1.8"
23+
}
24+
}
25+
26+
application {
27+
mainClass = 'com.github.codeql.ExplorerKt'
28+
}
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
kotlin.code.style=official
2+
kotlinVersion=1.5.21
3+
4+
GROUP=com.github.codeql
5+
VERSION_NAME=0.0.1
6+
POM_DESCRIPTION=CodeQL Kotlin explorer
7+
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
pluginManagement {
2+
repositories {
3+
mavenCentral()
4+
gradlePluginPortal()
5+
}
6+
}
7+
8+
rootProject.name = 'codeql-kotlin-explorer'
Lines changed: 217 additions & 0 deletions

0 commit comments

Comments
 (0)