You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
54 lines
1.9 KiB
Kotlin
54 lines
1.9 KiB
Kotlin
// Copyright 2021 yuyezhong@gmail.com
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
|
|
|
|
plugins {
|
|
id("org.jetbrains.kotlin.jvm") version "1.5.31"
|
|
`java-library`
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
constraints {
|
|
implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8")
|
|
}
|
|
//kotlin
|
|
implementation(platform("org.jetbrains.kotlin:kotlin-bom"))
|
|
implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8")
|
|
implementation("org.jetbrains.kotlin:kotlin-reflect")
|
|
|
|
implementation("com.google.guava:guava:18.0")
|
|
implementation("org.slf4j:slf4j-api:1.7.31")
|
|
implementation("org.slf4j:slf4j-simple:1.7.31")
|
|
implementation("org.apache.commons:commons-exec:1.3")
|
|
implementation("org.bouncycastle:bcprov-jdk15on:1.69")
|
|
implementation("org.apache.commons:commons-compress:1.20")
|
|
implementation("org.tukaani:xz:1.9")
|
|
implementation("com.github.freva:ascii-table:1.2.0")
|
|
|
|
testImplementation("org.jetbrains.kotlin:kotlin-test")
|
|
testImplementation("org.jetbrains.kotlin:kotlin-test-junit")
|
|
testImplementation("com.fasterxml.jackson.core:jackson-annotations:2.12.3")
|
|
testImplementation("com.fasterxml.jackson.core:jackson-databind:2.12.3")
|
|
}
|
|
|
|
tasks.withType<KotlinCompile>().all {
|
|
kotlinOptions.freeCompilerArgs += "-Xopt-in=kotlin.RequiresOptIn"
|
|
kotlinOptions.jvmTarget = "11"
|
|
}
|