52 lines
2.6 KiB
TOML
52 lines
2.6 KiB
TOML
# Copyright (C) 2021 Square, Inc.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# https://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
[versions]
|
|
kotlin = "1.7.22"
|
|
kct = "1.4.9"
|
|
ksp = "1.7.22-1.0.8"
|
|
ktlint = "0.48.2"
|
|
|
|
[plugins]
|
|
kotlin-jvm = { id = "org.jetbrains.kotlin.jvm", version.ref = "kotlin" }
|
|
dokka = { id = "org.jetbrains.dokka", version = "1.7.20" }
|
|
ksp = { id = "com.google.devtools.ksp", version.ref = "ksp" }
|
|
spotless = { id = "com.diffplug.spotless", version = "6.14.0" }
|
|
mavenPublish = { id = "com.vanniktech.maven.publish", version = "0.24.0" }
|
|
kotlinBinaryCompatibilityValidator = { id = "org.jetbrains.kotlinx.binary-compatibility-validator", version = "0.12.1" }
|
|
|
|
[libraries]
|
|
autoCommon = { module = "com.google.auto:auto-common", version = "1.2.1" }
|
|
guava = { module = "com.google.guava:guava", version = "31.1-jre" }
|
|
javapoet = "com.squareup:javapoet:1.13.0"
|
|
|
|
autoService = "com.google.auto.service:auto-service-annotations:1.0.1"
|
|
autoService-ksp = "dev.zacsweers.autoservice:auto-service-ksp:1.0.0"
|
|
|
|
kotlin-compilerEmbeddable = { module = "org.jetbrains.kotlin:kotlin-compiler-embeddable", version.ref = "kotlin" }
|
|
kotlin-annotationProcessingEmbeddable = { module = "org.jetbrains.kotlin:kotlin-annotation-processing-embeddable", version.ref = "kotlin" }
|
|
kotlin-reflect = { module = "org.jetbrains.kotlin:kotlin-reflect", version.ref = "kotlin" }
|
|
kotlin-junit = { module = "org.jetbrains.kotlin:kotlin-test-junit", version.ref = "kotlin" }
|
|
kotlin-metadata = { module = "org.jetbrains.kotlinx:kotlinx-metadata-jvm", version = "0.5.0" }
|
|
|
|
ksp = { module = "com.google.devtools.ksp:symbol-processing", version.ref = "ksp" }
|
|
ksp-api = { module = "com.google.devtools.ksp:symbol-processing-api", version.ref = "ksp" }
|
|
|
|
truth = { module = "com.google.truth:truth", version = "1.1.3" }
|
|
compileTesting = { module = "com.google.testing.compile:compile-testing", version = "0.21.0" }
|
|
jimfs = { module = "com.google.jimfs:jimfs", version = "1.2" }
|
|
ecj = { module = "org.eclipse.jdt.core.compiler:ecj", version = "4.6.1" }
|
|
kotlinCompileTesting = { module = "com.github.tschuchortdev:kotlin-compile-testing", version.ref = "kct" }
|
|
kotlinCompileTesting-ksp = { module = "com.github.tschuchortdev:kotlin-compile-testing-ksp", version.ref = "kct" }
|