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") |
| 22 | id("com.ncorti.ktfmt.gradle") |
Jiayu Liu | 49b2d6b | 2022-04-06 16:49:09 +0800 | [diff] [blame] | 23 | java |
| 24 | application |
| 25 | } |
| 26 | |
| 27 | repositories { |
| 28 | mavenCentral() |
| 29 | } |
| 30 | |
Jiayu Liu | eb62fa8 | 2022-05-08 13:01:41 +0800 | [diff] [blame^] | 31 | val slf4jVersion: String by project |
| 32 | val httpclientVersion: String by project |
| 33 | val httpcoreVersion: String by project |
| 34 | val logbackVersion: String by project |
| 35 | val kotlinxCoroutinesJdk8Version: String by project |
| 36 | |
Jiayu Liu | 49b2d6b | 2022-04-06 16:49:09 +0800 | [diff] [blame] | 37 | dependencies { |
| 38 | implementation(platform("org.jetbrains.kotlin:kotlin-bom")) |
| 39 | implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8") |
| 40 | // https://mvnrepository.com/artifact/org.jetbrains.kotlinx/kotlinx-coroutines-jdk8 |
Jiayu Liu | eb62fa8 | 2022-05-08 13:01:41 +0800 | [diff] [blame^] | 41 | implementation("org.jetbrains.kotlinx:kotlinx-coroutines-jdk8:$kotlinxCoroutinesJdk8Version") |
Jiayu Liu | 49b2d6b | 2022-04-06 16:49:09 +0800 | [diff] [blame] | 42 | // https://mvnrepository.com/artifact/org.apache.thrift/libthrift |
| 43 | implementation("org.apache.thrift:libthrift:INCLUDED") |
Jiayu Liu | eb62fa8 | 2022-05-08 13:01:41 +0800 | [diff] [blame^] | 44 | implementation("org.slf4j:slf4j-api:$slf4jVersion") |
| 45 | implementation("org.apache.httpcomponents:httpclient:$httpclientVersion") |
| 46 | implementation("org.apache.httpcomponents:httpcore:$httpcoreVersion") |
Jiayu Liu | 49b2d6b | 2022-04-06 16:49:09 +0800 | [diff] [blame] | 47 | // https://mvnrepository.com/artifact/ch.qos.logback/logback-classic |
Jiayu Liu | eb62fa8 | 2022-05-08 13:01:41 +0800 | [diff] [blame^] | 48 | implementation("ch.qos.logback:logback-classic:$logbackVersion") |
| 49 | testImplementation("org.jetbrains.kotlin:kotlin-test") |
| 50 | testImplementation("org.jetbrains.kotlin:kotlin-test-junit") |
Jiayu Liu | 49b2d6b | 2022-04-06 16:49:09 +0800 | [diff] [blame] | 51 | } |
| 52 | |
| 53 | tasks { |
| 54 | application { |
| 55 | applicationName = "TestClient" |
| 56 | mainClass.set("org.apache.thrift.test.TestClientKt") |
| 57 | } |
| 58 | |
| 59 | ktfmt { |
| 60 | kotlinLangStyle() |
| 61 | } |
| 62 | |
| 63 | task<Exec>("compileThrift") { |
| 64 | val thriftBin = if (hasProperty("thrift.compiler")) { |
| 65 | file(property("thrift.compiler")) |
| 66 | } else { |
| 67 | project.rootDir.resolve("../../compiler/cpp/thrift") |
| 68 | } |
| 69 | val outputDir = layout.buildDirectory.dir("generated-sources") |
| 70 | doFirst { |
| 71 | mkdir(outputDir) |
| 72 | } |
| 73 | commandLine = listOf( |
| 74 | thriftBin.absolutePath, |
| 75 | "-gen", |
| 76 | "kotlin", |
| 77 | "-out", |
| 78 | outputDir.get().toString(), |
| 79 | project.rootDir.resolve("../../test/ThriftTest.thrift").absolutePath |
| 80 | ) |
| 81 | group = LifecycleBasePlugin.BUILD_GROUP |
| 82 | } |
| 83 | |
| 84 | compileKotlin { |
| 85 | dependsOn("compileThrift") |
| 86 | } |
| 87 | } |
| 88 | |
| 89 | sourceSets["main"].java { |
| 90 | srcDir(layout.buildDirectory.dir("generated-sources")) |
| 91 | } |