Select Git revision
CyUtilities.java
-
Philipp Spohr authoredPhilipp Spohr authored
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
build.gradle.kts 1.24 KiB
/*
* This file was generated by the Gradle 'init' task.
*
* This generated file contains a sample Kotlin application project to get you started.
*/
plugins {
// Apply the Kotlin JVM plugin to add support for Kotlin.
id("org.jetbrains.kotlin.jvm") version "1.3.72"
idea
// Apply the application plugin to add support for building a CLI application.
application
id("com.github.johnrengelman.shadow") version "5.2.0"
}
repositories {
// Use jcenter for resolving dependencies.
jcenter()
}
dependencies {
// Align versions of all Kotlin components
implementation(platform("org.jetbrains.kotlin:kotlin-bom"))
// Use the Kotlin JDK 8 standard library.
implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8")
// eclipse lsp implementation
implementation("org.eclipse.lsp4j", "org.eclipse.lsp4j", "0.9.0")
// json converter
implementation("com.google.code.gson" ,"gson" ,"2.8.6")
// Use the Kotlin test library.
testImplementation("org.jetbrains.kotlin:kotlin-test")
// Use the Kotlin JUnit integration.
testImplementation("org.jetbrains.kotlin:kotlin-test-junit")
}
application {
// Define the main class for the application.
mainClassName = "b.language.server.AppKt"
}