Aurimas Liutikas | e2d9909 | 2020-08-13 17:26:58 -0700 | [diff] [blame] | 1 | import com.android.tools.metalava.CREATE_ARCHIVE_TASK |
| 2 | import com.android.tools.metalava.CREATE_BUILD_INFO_TASK |
Aurimas Liutikas | d507ea7 | 2020-08-13 16:23:54 -0700 | [diff] [blame] | 3 | import com.android.tools.metalava.configureBuildInfoTask |
Aurimas Liutikas | e2d9909 | 2020-08-13 17:26:58 -0700 | [diff] [blame] | 4 | import com.android.tools.metalava.configurePublishingArchive |
Aurimas Liutikas | 6d6b55b | 2020-04-29 10:24:34 -0700 | [diff] [blame] | 5 | import org.gradle.api.tasks.testing.logging.TestLogEvent |
Aurimas Liutikas | 467bb9a | 2019-07-03 16:21:01 -0700 | [diff] [blame] | 6 | import org.jetbrains.kotlin.gradle.tasks.KotlinCompile |
| 7 | import java.io.FileInputStream |
| 8 | import java.io.FileNotFoundException |
| 9 | import java.util.Properties |
| 10 | |
Aurimas Liutikas | 467bb9a | 2019-07-03 16:21:01 -0700 | [diff] [blame] | 11 | buildDir = getBuildDirectory() |
| 12 | |
Aurimas Liutikas | e2d9909 | 2020-08-13 17:26:58 -0700 | [diff] [blame] | 13 | defaultTasks = mutableListOf( |
| 14 | "installDist", |
| 15 | "test", |
| 16 | CREATE_ARCHIVE_TASK, |
| 17 | CREATE_BUILD_INFO_TASK, |
| 18 | "ktlint" |
| 19 | ) |
Aurimas Liutikas | 467bb9a | 2019-07-03 16:21:01 -0700 | [diff] [blame] | 20 | |
| 21 | repositories { |
| 22 | google() |
Aurimas Liutikas | c2325f7 | 2021-02-17 16:53:53 -0800 | [diff] [blame] | 23 | mavenCentral() |
Aurimas Liutikas | 6c2e7f8 | 2020-05-05 10:24:57 -0700 | [diff] [blame] | 24 | val lintRepo = project.findProperty("lintRepo") as String? |
Aurimas Liutikas | 222577c | 2020-05-01 17:21:57 -0700 | [diff] [blame] | 25 | if (lintRepo != null) { |
| 26 | logger.warn("Building using custom $lintRepo maven repository") |
| 27 | maven { |
| 28 | url = uri(lintRepo) |
| 29 | } |
| 30 | } |
Aurimas Liutikas | 467bb9a | 2019-07-03 16:21:01 -0700 | [diff] [blame] | 31 | } |
| 32 | |
| 33 | plugins { |
Aurimas Liutikas | f50bf05 | 2021-09-21 15:58:21 -0700 | [diff] [blame] | 34 | kotlin("jvm") version "1.5.31" |
Aurimas Liutikas | 467bb9a | 2019-07-03 16:21:01 -0700 | [diff] [blame] | 35 | id("application") |
| 36 | id("java") |
Aurimas Liutikas | 40d8f83 | 2019-07-26 14:23:58 -0700 | [diff] [blame] | 37 | id("maven-publish") |
Aurimas Liutikas | 467bb9a | 2019-07-03 16:21:01 -0700 | [diff] [blame] | 38 | } |
| 39 | |
Aurimas Liutikas | f5a53df | 2020-08-13 17:32:40 -0700 | [diff] [blame] | 40 | group = "com.android.tools.metalava" |
Aurimas Liutikas | 467bb9a | 2019-07-03 16:21:01 -0700 | [diff] [blame] | 41 | version = getMetalavaVersion() |
| 42 | |
| 43 | application { |
Aurimas Liutikas | e073948 | 2021-04-08 16:11:15 -0700 | [diff] [blame] | 44 | mainClass.set("com.android.tools.metalava.Driver") |
Aurimas Liutikas | 467bb9a | 2019-07-03 16:21:01 -0700 | [diff] [blame] | 45 | applicationDefaultJvmArgs = listOf("-ea", "-Xms2g", "-Xmx4g") |
| 46 | } |
| 47 | |
| 48 | java { |
| 49 | sourceCompatibility = JavaVersion.VERSION_1_8 |
| 50 | targetCompatibility = JavaVersion.VERSION_1_8 |
| 51 | } |
| 52 | |
| 53 | tasks.withType(KotlinCompile::class.java) { |
| 54 | sourceCompatibility = "1.8" |
| 55 | targetCompatibility = "1.8" |
| 56 | |
| 57 | kotlinOptions { |
| 58 | jvmTarget = "1.8" |
Aurimas Liutikas | 10b3b7d | 2021-05-19 13:01:58 -0700 | [diff] [blame] | 59 | apiVersion = "1.5" |
| 60 | languageVersion = "1.5" |
Aurimas Liutikas | f3306a2 | 2020-05-05 14:46:08 -0700 | [diff] [blame] | 61 | allWarningsAsErrors = true |
Aurimas Liutikas | 467bb9a | 2019-07-03 16:21:01 -0700 | [diff] [blame] | 62 | } |
| 63 | } |
| 64 | |
Aurimas Liutikas | 6c2e7f8 | 2020-05-05 10:24:57 -0700 | [diff] [blame] | 65 | val customLintVersion = findProperty("lintVersion") as String? |
Aurimas Liutikas | 222577c | 2020-05-01 17:21:57 -0700 | [diff] [blame] | 66 | val studioVersion: String = if (customLintVersion != null) { |
| 67 | logger.warn("Building using custom $customLintVersion version of Android Lint") |
| 68 | customLintVersion |
| 69 | } else { |
Aurimas Liutikas | 391fe94 | 2021-10-08 14:33:06 -0700 | [diff] [blame^] | 70 | "30.1.0-alpha13" |
Aurimas Liutikas | 222577c | 2020-05-01 17:21:57 -0700 | [diff] [blame] | 71 | } |
Aurimas Liutikas | f50bf05 | 2021-09-21 15:58:21 -0700 | [diff] [blame] | 72 | val kotlinVersion: String = "1.5.31" |
Aurimas Liutikas | 467bb9a | 2019-07-03 16:21:01 -0700 | [diff] [blame] | 73 | |
| 74 | dependencies { |
| 75 | implementation("com.android.tools.external.org-jetbrains:uast:$studioVersion") |
Aurimas Liutikas | ed52e2f | 2020-11-17 09:36:44 -0800 | [diff] [blame] | 76 | implementation("com.android.tools.external.com-intellij:kotlin-compiler:$studioVersion") |
Aurimas Liutikas | 467bb9a | 2019-07-03 16:21:01 -0700 | [diff] [blame] | 77 | implementation("com.android.tools.external.com-intellij:intellij-core:$studioVersion") |
| 78 | implementation("com.android.tools.lint:lint-api:$studioVersion") |
| 79 | implementation("com.android.tools.lint:lint-checks:$studioVersion") |
| 80 | implementation("com.android.tools.lint:lint-gradle:$studioVersion") |
| 81 | implementation("com.android.tools.lint:lint:$studioVersion") |
Aurimas Liutikas | ed52e2f | 2020-11-17 09:36:44 -0800 | [diff] [blame] | 82 | implementation("com.android.tools:common:$studioVersion") |
| 83 | implementation("com.android.tools:sdk-common:$studioVersion") |
| 84 | implementation("com.android.tools:sdklib:$studioVersion") |
Aurimas Liutikas | 467bb9a | 2019-07-03 16:21:01 -0700 | [diff] [blame] | 85 | implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlinVersion") |
| 86 | implementation("org.jetbrains.kotlin:kotlin-reflect:$kotlinVersion") |
Aurimas Liutikas | ed52e2f | 2020-11-17 09:36:44 -0800 | [diff] [blame] | 87 | implementation("org.ow2.asm:asm:8.0") |
| 88 | implementation("org.ow2.asm:asm-tree:8.0") |
Aurimas Liutikas | f50bf05 | 2021-09-21 15:58:21 -0700 | [diff] [blame] | 89 | implementation("com.google.guava:guava:30.1.1-jre") |
Aurimas Liutikas | 467bb9a | 2019-07-03 16:21:01 -0700 | [diff] [blame] | 90 | testImplementation("com.android.tools.lint:lint-tests:$studioVersion") |
Aurimas Liutikas | 391fe94 | 2021-10-08 14:33:06 -0700 | [diff] [blame^] | 91 | testImplementation("junit:junit:4.13.2") |
Aurimas Liutikas | f50bf05 | 2021-09-21 15:58:21 -0700 | [diff] [blame] | 92 | testImplementation("com.google.truth:truth:1.1.3") |
Aurimas Liutikas | ed52e2f | 2020-11-17 09:36:44 -0800 | [diff] [blame] | 93 | testImplementation("org.jetbrains.kotlin:kotlin-test:$kotlinVersion") |
Aurimas Liutikas | 467bb9a | 2019-07-03 16:21:01 -0700 | [diff] [blame] | 94 | } |
| 95 | |
Aurimas Liutikas | 21dc23e | 2021-05-05 17:13:13 -0700 | [diff] [blame] | 96 | val zipTask: TaskProvider<Zip> = project.tasks.register( |
| 97 | "zipResultsOf${name.capitalize()}", |
| 98 | Zip::class.java |
| 99 | ) { |
| 100 | destinationDirectory.set(File(getDistributionDirectory(), "host-test-reports")) |
| 101 | archiveFileName.set("metalava-tests.zip") |
| 102 | } |
| 103 | |
| 104 | val testTask = tasks.named("test", Test::class.java) |
| 105 | testTask.configure { |
Aurimas Liutikas | ea8fd9a | 2021-05-19 15:58:42 -0700 | [diff] [blame] | 106 | maxParallelForks = (Runtime.getRuntime().availableProcessors() / 2).takeIf { it > 0 } ?: 1 |
Aurimas Liutikas | 6d6b55b | 2020-04-29 10:24:34 -0700 | [diff] [blame] | 107 | testLogging.events = hashSetOf( |
| 108 | TestLogEvent.FAILED, |
| 109 | TestLogEvent.PASSED, |
| 110 | TestLogEvent.SKIPPED, |
| 111 | TestLogEvent.STANDARD_OUT, |
| 112 | TestLogEvent.STANDARD_ERROR |
| 113 | ) |
Aurimas Liutikas | 467bb9a | 2019-07-03 16:21:01 -0700 | [diff] [blame] | 114 | if (isBuildingOnServer()) ignoreFailures = true |
| 115 | finalizedBy(zipTask) |
Aurimas Liutikas | 21dc23e | 2021-05-05 17:13:13 -0700 | [diff] [blame] | 116 | } |
| 117 | zipTask.configure { |
| 118 | from(testTask.map { it.reports.junitXml.outputLocation.get() }) |
Aurimas Liutikas | 467bb9a | 2019-07-03 16:21:01 -0700 | [diff] [blame] | 119 | } |
| 120 | |
| 121 | fun getMetalavaVersion(): Any { |
Aurimas Liutikas | b5d8fc2 | 2019-07-08 10:49:40 -0700 | [diff] [blame] | 122 | val versionPropertyFile = File(projectDir, "src/main/resources/version.properties") |
Aurimas Liutikas | 467bb9a | 2019-07-03 16:21:01 -0700 | [diff] [blame] | 123 | if (versionPropertyFile.canRead()) { |
| 124 | val versionProps = Properties() |
| 125 | versionProps.load(FileInputStream(versionPropertyFile)) |
| 126 | val metalavaVersion = versionProps["metalavaVersion"] |
| 127 | ?: throw IllegalStateException("metalava version was not set in ${versionPropertyFile.absolutePath}") |
| 128 | return if (isBuildingOnServer()) { |
| 129 | metalavaVersion |
| 130 | } else { |
| 131 | // Local builds are not public release candidates. |
| 132 | "$metalavaVersion-SNAPSHOT" |
| 133 | } |
| 134 | } else { |
| 135 | throw FileNotFoundException("Could not read ${versionPropertyFile.absolutePath}") |
| 136 | } |
| 137 | } |
| 138 | |
| 139 | fun getBuildDirectory(): File { |
| 140 | return if (System.getenv("OUT_DIR") != null) { |
| 141 | File(System.getenv("OUT_DIR"), "host/common/metalava") |
| 142 | } else { |
| 143 | File("../../out/host/common") |
| 144 | } |
| 145 | } |
| 146 | |
| 147 | /** |
| 148 | * The build server will copy the contents of the distribution directory and make it available for |
| 149 | * download. |
| 150 | */ |
| 151 | fun getDistributionDirectory(): File { |
| 152 | return if (System.getenv("DIST_DIR") != null) { |
| 153 | File(System.getenv("DIST_DIR")) |
| 154 | } else { |
| 155 | File("../../out/dist") |
| 156 | } |
| 157 | } |
| 158 | |
| 159 | fun isBuildingOnServer(): Boolean { |
| 160 | return System.getenv("OUT_DIR") != null && System.getenv("DIST_DIR") != null |
| 161 | } |
| 162 | |
Aurimas Liutikas | 0b1d707 | 2019-08-07 06:26:24 -0700 | [diff] [blame] | 163 | /** |
| 164 | * @return build id string for current build |
| 165 | * |
| 166 | * The build server does not pass the build id so we infer it from the last folder of the |
| 167 | * distribution directory name. |
| 168 | */ |
| 169 | fun getBuildId(): String { |
| 170 | return if (System.getenv("DIST_DIR") != null) File(System.getenv("DIST_DIR")).name else "0" |
| 171 | } |
| 172 | |
Aurimas Liutikas | 7c6066e | 2021-07-14 16:01:48 -0700 | [diff] [blame] | 173 | // KtLint: https://github.com/pinterest/ktlint |
Aurimas Liutikas | 467bb9a | 2019-07-03 16:21:01 -0700 | [diff] [blame] | 174 | |
| 175 | fun Project.getKtlintConfiguration(): Configuration { |
| 176 | return configurations.findByName("ktlint") ?: configurations.create("ktlint") { |
Aurimas Liutikas | 7c6066e | 2021-07-14 16:01:48 -0700 | [diff] [blame] | 177 | val dependency = project.dependencies.create("com.pinterest:ktlint:0.41.0") |
Aurimas Liutikas | 467bb9a | 2019-07-03 16:21:01 -0700 | [diff] [blame] | 178 | dependencies.add(dependency) |
| 179 | } |
| 180 | } |
| 181 | |
| 182 | tasks.register("ktlint", JavaExec::class.java) { |
| 183 | description = "Check Kotlin code style." |
| 184 | group = "Verification" |
| 185 | classpath = getKtlintConfiguration() |
Aurimas Liutikas | 7c6066e | 2021-07-14 16:01:48 -0700 | [diff] [blame] | 186 | mainClass.set("com.pinterest.ktlint.Main") |
Aurimas Liutikas | 95563a0 | 2019-07-03 16:27:38 -0700 | [diff] [blame] | 187 | args = listOf("src/**/*.kt", "build.gradle.kts") |
Aurimas Liutikas | 467bb9a | 2019-07-03 16:21:01 -0700 | [diff] [blame] | 188 | } |
| 189 | |
| 190 | tasks.register("ktlintFormat", JavaExec::class.java) { |
| 191 | description = "Fix Kotlin code style deviations." |
| 192 | group = "formatting" |
| 193 | classpath = getKtlintConfiguration() |
Aurimas Liutikas | 7c6066e | 2021-07-14 16:01:48 -0700 | [diff] [blame] | 194 | mainClass.set("com.pinterest.ktlint.Main") |
Aurimas Liutikas | 95563a0 | 2019-07-03 16:27:38 -0700 | [diff] [blame] | 195 | args = listOf("-F", "src/**/*.kt", "build.gradle.kts") |
Aurimas Liutikas | 467bb9a | 2019-07-03 16:21:01 -0700 | [diff] [blame] | 196 | } |
Aurimas Liutikas | 40d8f83 | 2019-07-26 14:23:58 -0700 | [diff] [blame] | 197 | |
Aurimas Liutikas | e2d9909 | 2020-08-13 17:26:58 -0700 | [diff] [blame] | 198 | val publicationName = "Metalava" |
Aurimas Liutikas | 0b1d707 | 2019-08-07 06:26:24 -0700 | [diff] [blame] | 199 | val repositoryName = "Dist" |
| 200 | |
Aurimas Liutikas | 40d8f83 | 2019-07-26 14:23:58 -0700 | [diff] [blame] | 201 | publishing { |
| 202 | publications { |
Aurimas Liutikas | e2d9909 | 2020-08-13 17:26:58 -0700 | [diff] [blame] | 203 | create<MavenPublication>(publicationName) { |
Aurimas Liutikas | 40d8f83 | 2019-07-26 14:23:58 -0700 | [diff] [blame] | 204 | from(components["java"]) |
| 205 | pom { |
| 206 | licenses { |
| 207 | license { |
| 208 | name.set("The Apache License, Version 2.0") |
| 209 | url.set("http://www.apache.org/licenses/LICENSE-2.0.txt") |
| 210 | } |
| 211 | } |
| 212 | developers { |
| 213 | developer { |
| 214 | name.set("The Android Open Source Project") |
| 215 | } |
| 216 | } |
| 217 | scm { |
| 218 | connection.set("scm:git:https://android.googlesource.com/platform/tools/metalava") |
| 219 | url.set("https://android.googlesource.com/platform/tools/metalava/") |
| 220 | } |
| 221 | } |
| 222 | } |
| 223 | } |
| 224 | |
| 225 | repositories { |
| 226 | maven { |
Aurimas Liutikas | 0b1d707 | 2019-08-07 06:26:24 -0700 | [diff] [blame] | 227 | name = repositoryName |
| 228 | url = uri("file://${getDistributionDirectory().canonicalPath}/repo/m2repository") |
Aurimas Liutikas | 40d8f83 | 2019-07-26 14:23:58 -0700 | [diff] [blame] | 229 | } |
| 230 | } |
Aurimas Liutikas | 0b1d707 | 2019-08-07 06:26:24 -0700 | [diff] [blame] | 231 | } |
| 232 | |
Aurimas Liutikas | 606c410 | 2020-05-14 16:03:11 -0700 | [diff] [blame] | 233 | // Workaround for https://github.com/gradle/gradle/issues/11717 |
| 234 | tasks.withType(GenerateModuleMetadata::class.java).configureEach { |
Aurimas Liutikas | 21dc23e | 2021-05-05 17:13:13 -0700 | [diff] [blame] | 235 | val outDirProvider = project.providers.environmentVariable("DIST_DIR") |
| 236 | inputs.property("buildOutputDirectory", outDirProvider).optional(true) |
Aurimas Liutikas | 606c410 | 2020-05-14 16:03:11 -0700 | [diff] [blame] | 237 | doLast { |
| 238 | val metadata = outputFile.asFile.get() |
Aurimas Liutikas | e073948 | 2021-04-08 16:11:15 -0700 | [diff] [blame] | 239 | val text = metadata.readText() |
Aurimas Liutikas | 21dc23e | 2021-05-05 17:13:13 -0700 | [diff] [blame] | 240 | val buildId = outDirProvider.orNull?.let { File(it).name } ?: "0" |
Aurimas Liutikas | 606c410 | 2020-05-14 16:03:11 -0700 | [diff] [blame] | 241 | metadata.writeText( |
| 242 | text.replace( |
| 243 | "\"buildId\": .*".toRegex(), |
Aurimas Liutikas | 7c6066e | 2021-07-14 16:01:48 -0700 | [diff] [blame] | 244 | "\"buildId:\": \"${buildId}\"" |
| 245 | ) |
Aurimas Liutikas | 606c410 | 2020-05-14 16:03:11 -0700 | [diff] [blame] | 246 | ) |
| 247 | } |
Aurimas Liutikas | d507ea7 | 2020-08-13 16:23:54 -0700 | [diff] [blame] | 248 | } |
| 249 | |
Aurimas Liutikas | 479f42d | 2021-06-08 15:07:16 -0700 | [diff] [blame] | 250 | val archiveTaskProvider = configurePublishingArchive( |
Aurimas Liutikas | e2d9909 | 2020-08-13 17:26:58 -0700 | [diff] [blame] | 251 | project, |
| 252 | publicationName, |
| 253 | repositoryName, |
| 254 | getBuildId(), |
| 255 | getDistributionDirectory() |
| 256 | ) |
Aurimas Liutikas | 479f42d | 2021-06-08 15:07:16 -0700 | [diff] [blame] | 257 | configureBuildInfoTask( |
| 258 | project, |
| 259 | isBuildingOnServer(), |
| 260 | getDistributionDirectory(), |
| 261 | archiveTaskProvider |
| 262 | ) |