Jiayu Liu | 49b2d6b | 2022-04-06 16:49:09 +0800 | [diff] [blame] | 1 | /* |
| 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 | |
| 20 | plugins { |
Jiayu Liu | 6c002b6 | 2022-05-07 00:40:03 +0800 | [diff] [blame] | 21 | kotlin("jvm") |
Jiayu Liu | 49b2d6b | 2022-04-06 16:49:09 +0800 | [diff] [blame] | 22 | java |
| 23 | application |
Jiayu Liu | 5b15838 | 2022-05-12 00:20:37 +0800 | [diff] [blame] | 24 | id("com.ncorti.ktfmt.gradle") |
Jiayu Liu | 49b2d6b | 2022-04-06 16:49:09 +0800 | [diff] [blame] | 25 | } |
| 26 | |
dependabot[bot] | 5501e8f | 2025-09-05 16:37:40 -0400 | [diff] [blame^] | 27 | repositories { mavenCentral() } |
Jiayu Liu | 49b2d6b | 2022-04-06 16:49:09 +0800 | [diff] [blame] | 28 | |
Jiayu Liu | eb62fa8 | 2022-05-08 13:01:41 +0800 | [diff] [blame] | 29 | val slf4jVersion: String by project |
| 30 | val httpcoreVersion: String by project |
| 31 | val logbackVersion: String by project |
| 32 | val kotlinxCoroutinesJdk8Version: String by project |
Jiayu Liu | 5fdfd0c | 2022-05-09 10:52:26 +0800 | [diff] [blame] | 33 | val cliktVersion: String by project |
Jiayu Liu | eb62fa8 | 2022-05-08 13:01:41 +0800 | [diff] [blame] | 34 | |
Jiayu Liu | 49b2d6b | 2022-04-06 16:49:09 +0800 | [diff] [blame] | 35 | dependencies { |
| 36 | implementation(platform("org.jetbrains.kotlin:kotlin-bom")) |
| 37 | implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8") |
Jiayu Liu | 5fdfd0c | 2022-05-09 10:52:26 +0800 | [diff] [blame] | 38 | // clikt is used to drive command line parsing and validation |
| 39 | implementation("com.github.ajalt.clikt:clikt:$cliktVersion") |
Jiayu Liu | eb62fa8 | 2022-05-08 13:01:41 +0800 | [diff] [blame] | 40 | implementation("org.jetbrains.kotlinx:kotlinx-coroutines-jdk8:$kotlinxCoroutinesJdk8Version") |
Jiayu Liu | 49b2d6b | 2022-04-06 16:49:09 +0800 | [diff] [blame] | 41 | implementation("org.apache.thrift:libthrift:INCLUDED") |
Jiayu Liu | eb62fa8 | 2022-05-08 13:01:41 +0800 | [diff] [blame] | 42 | implementation("org.slf4j:slf4j-api:$slf4jVersion") |
| 43 | implementation("org.apache.httpcomponents:httpcore:$httpcoreVersion") |
Jiayu Liu | eb62fa8 | 2022-05-08 13:01:41 +0800 | [diff] [blame] | 44 | implementation("ch.qos.logback:logback-classic:$logbackVersion") |
| 45 | testImplementation("org.jetbrains.kotlin:kotlin-test") |
| 46 | testImplementation("org.jetbrains.kotlin:kotlin-test-junit") |
Jiayu Liu | 49b2d6b | 2022-04-06 16:49:09 +0800 | [diff] [blame] | 47 | } |
| 48 | |
Jiayu Liu | 49b2d6b | 2022-04-06 16:49:09 +0800 | [diff] [blame] | 49 | tasks { |
| 50 | application { |
| 51 | applicationName = "TestServer" |
| 52 | mainClass.set("org.apache.thrift.test.TestServerKt") |
| 53 | } |
| 54 | |
Jiayu Liu | 5b15838 | 2022-05-12 00:20:37 +0800 | [diff] [blame] | 55 | if (JavaVersion.current().isJava11Compatible) { |
dependabot[bot] | 5501e8f | 2025-09-05 16:37:40 -0400 | [diff] [blame^] | 56 | ktfmt { kotlinLangStyle() } |
Jiayu Liu | 49b2d6b | 2022-04-06 16:49:09 +0800 | [diff] [blame] | 57 | } |
| 58 | |
| 59 | task<Exec>("compileThrift") { |
dependabot[bot] | 5501e8f | 2025-09-05 16:37:40 -0400 | [diff] [blame^] | 60 | val thriftBin = |
| 61 | if (hasProperty("thrift.compiler")) { |
| 62 | file(property("thrift.compiler")!!) |
| 63 | } else { |
| 64 | project.rootDir.resolve("../../compiler/cpp/thrift") |
| 65 | } |
Jiayu Liu | 49b2d6b | 2022-04-06 16:49:09 +0800 | [diff] [blame] | 66 | val outputDir = layout.buildDirectory.dir("generated-sources") |
dependabot[bot] | 5501e8f | 2025-09-05 16:37:40 -0400 | [diff] [blame^] | 67 | doFirst { mkdir(outputDir) } |
| 68 | commandLine = |
| 69 | listOf( |
| 70 | thriftBin.absolutePath, |
| 71 | "-gen", |
| 72 | "kotlin", |
| 73 | "-out", |
| 74 | outputDir.get().toString(), |
| 75 | project.rootDir.resolve("../../test/ThriftTest.thrift").absolutePath, |
| 76 | ) |
Jiayu Liu | 49b2d6b | 2022-04-06 16:49:09 +0800 | [diff] [blame] | 77 | group = LifecycleBasePlugin.BUILD_GROUP |
| 78 | } |
| 79 | |
dependabot[bot] | 5501e8f | 2025-09-05 16:37:40 -0400 | [diff] [blame^] | 80 | compileKotlin { dependsOn("compileThrift") } |
Jiayu Liu | 49b2d6b | 2022-04-06 16:49:09 +0800 | [diff] [blame] | 81 | } |
| 82 | |
dependabot[bot] | 5501e8f | 2025-09-05 16:37:40 -0400 | [diff] [blame^] | 83 | sourceSets["main"].java { srcDir(layout.buildDirectory.dir("generated-sources")) } |