1# Copyright (C) 2021 Square, Inc. 2# 3# Licensed under the Apache License, Version 2.0 (the "License"); 4# you may not use this file except in compliance with the License. 5# You may obtain a copy of the License at 6# 7# https://www.apache.org/licenses/LICENSE-2.0 8# 9# Unless required by applicable law or agreed to in writing, software 10# distributed under the License is distributed on an "AS IS" BASIS, 11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12# See the License for the specific language governing permissions and 13# limitations under the License. 14 15[versions] 16kotlin = "2.0.0" 17kct = "0.5.1" 18ksp = "2.0.0-1.0.22" 19ktlint = "0.48.2" 20 21[plugins] 22kotlin-multiplatform = { id = "org.jetbrains.kotlin.multiplatform", version.ref = "kotlin" } 23kotlin-jvm = { id = "org.jetbrains.kotlin.jvm", version.ref = "kotlin" } 24dokka = { id = "org.jetbrains.dokka", version = "1.9.20" } 25ksp = { id = "com.google.devtools.ksp", version.ref = "ksp" } 26spotless = { id = "com.diffplug.spotless", version = "6.25.0" } 27mavenPublish = { id = "com.vanniktech.maven.publish", version = "0.29.0" } 28kotlinBinaryCompatibilityValidator = { id = "org.jetbrains.kotlinx.binary-compatibility-validator", version = "0.15.1" } 29 30[libraries] 31autoCommon = { module = "com.google.auto:auto-common", version = "1.2.2" } 32guava = { module = "com.google.guava:guava", version = "33.2.1-jre" } 33javapoet = "com.squareup:javapoet:1.13.0" 34 35autoService = "com.google.auto.service:auto-service-annotations:1.1.1" 36autoService-ksp = "dev.zacsweers.autoservice:auto-service-ksp:1.2.0" 37 38kotlin-compilerEmbeddable = { module = "org.jetbrains.kotlin:kotlin-compiler-embeddable", version.ref = "kotlin" } 39kotlin-annotationProcessingEmbeddable = { module = "org.jetbrains.kotlin:kotlin-annotation-processing-embeddable", version.ref = "kotlin" } 40kotlin-reflect = { module = "org.jetbrains.kotlin:kotlin-reflect", version.ref = "kotlin" } 41kotlin-junit = { module = "org.jetbrains.kotlin:kotlin-test-junit", version.ref = "kotlin" } 42kotlin-metadata = { module = "org.jetbrains.kotlin:kotlin-metadata-jvm", version.ref = "kotlin" } 43 44ksp = { module = "com.google.devtools.ksp:symbol-processing", version.ref = "ksp" } 45ksp-api = { module = "com.google.devtools.ksp:symbol-processing-api", version.ref = "ksp" } 46ksp-aaEmbeddable = { module = "com.google.devtools.ksp:symbol-processing-aa-embeddable", version.ref = "ksp" } 47 48truth = { module = "com.google.truth:truth", version = "1.4.4" } 49compileTesting = { module = "com.google.testing.compile:compile-testing", version = "0.21.0" } 50jimfs = { module = "com.google.jimfs:jimfs", version = "1.3.0" } 51ecj = { module = "org.eclipse.jdt.core.compiler:ecj", version = "4.6.1" } 52kotlinCompileTesting = { module = "dev.zacsweers.kctfork:core", version.ref = "kct" } 53kotlinCompileTesting-ksp = { module = "dev.zacsweers.kctfork:ksp", version.ref = "kct" } 54