blob: 508b29d1f2fb30f5b31ed7729a07bd294c328e24 [file] [log] [blame]
Jiayu Liu49b2d6b2022-04-06 16:49:09 +08001/*
2 * Licensed to the Apache Software Foundation (ASF) under one
3 * or more contributor license agreements. See the NOTICE file
4 * distributed with this work for additional information
5 * regarding copyright ownership. The ASF licenses this file
6 * to you under the Apache License, Version 2.0 (the
7 * "License"); you may not use this file except in compliance
8 * with the License. You may obtain a copy of the License at
9 *
10 * http://www.apache.org/licenses/LICENSE-2.0
11 *
12 * Unless required by applicable law or agreed to in writing,
13 * software distributed under the License is distributed on an
14 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15 * KIND, either express or implied. See the License for the
16 * specific language governing permissions and limitations
17 * under the License.
18 */
19
20plugins {
Jiayu Liu6c002b62022-05-07 00:40:03 +080021 kotlin("jvm")
22 id("com.ncorti.ktfmt.gradle")
Jiayu Liu49b2d6b2022-04-06 16:49:09 +080023 java
24 application
25}
26
27repositories {
28 mavenCentral()
29}
30
Jiayu Liueb62fa82022-05-08 13:01:41 +080031val slf4jVersion: String by project
32val httpcoreVersion: String by project
33val logbackVersion: String by project
34val kotlinxCoroutinesJdk8Version: String by project
Jiayu Liu5fdfd0c2022-05-09 10:52:26 +080035val cliktVersion: String by project
Jiayu Liueb62fa82022-05-08 13:01:41 +080036
Jiayu Liu49b2d6b2022-04-06 16:49:09 +080037dependencies {
38 implementation(platform("org.jetbrains.kotlin:kotlin-bom"))
39 implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8")
Jiayu Liu5fdfd0c2022-05-09 10:52:26 +080040 // clikt is used to drive command line parsing and validation
41 implementation("com.github.ajalt.clikt:clikt:$cliktVersion")
Jiayu Liueb62fa82022-05-08 13:01:41 +080042 implementation("org.jetbrains.kotlinx:kotlinx-coroutines-jdk8:$kotlinxCoroutinesJdk8Version")
Jiayu Liu49b2d6b2022-04-06 16:49:09 +080043 implementation("org.apache.thrift:libthrift:INCLUDED")
Jiayu Liueb62fa82022-05-08 13:01:41 +080044 implementation("org.slf4j:slf4j-api:$slf4jVersion")
45 implementation("org.apache.httpcomponents:httpcore:$httpcoreVersion")
Jiayu Liueb62fa82022-05-08 13:01:41 +080046 implementation("ch.qos.logback:logback-classic:$logbackVersion")
47 testImplementation("org.jetbrains.kotlin:kotlin-test")
48 testImplementation("org.jetbrains.kotlin:kotlin-test-junit")
Jiayu Liu49b2d6b2022-04-06 16:49:09 +080049}
50
Jiayu Liuab83ffc2022-05-10 01:56:30 +080051kotlin {
52 jvmToolchain {
53 (this as JavaToolchainSpec).languageVersion.set(JavaLanguageVersion.of(8))
54 }
55}
56
Jiayu Liu49b2d6b2022-04-06 16:49:09 +080057tasks {
58 application {
59 applicationName = "TestServer"
60 mainClass.set("org.apache.thrift.test.TestServerKt")
61 }
62
63 ktfmt {
64 kotlinLangStyle()
65 }
66
67 task<Exec>("compileThrift") {
68 val thriftBin = if (hasProperty("thrift.compiler")) {
69 file(property("thrift.compiler"))
70 } else {
71 project.rootDir.resolve("../../compiler/cpp/thrift")
72 }
73 val outputDir = layout.buildDirectory.dir("generated-sources")
74 doFirst {
75 mkdir(outputDir)
76 }
77 commandLine = listOf(
78 thriftBin.absolutePath,
79 "-gen",
80 "kotlin",
81 "-out",
82 outputDir.get().toString(),
83 project.rootDir.resolve("../../test/ThriftTest.thrift").absolutePath
84 )
85 group = LifecycleBasePlugin.BUILD_GROUP
86 }
87
88 compileKotlin {
89 dependsOn("compileThrift")
90 }
91}
92
93sourceSets["main"].java {
94 srcDir(layout.buildDirectory.dir("generated-sources"))
95}