blob: c328da902976d5294d9dff98aef83fe2b58cf9b6 [file] [edit]
// Copyright (c) 2023, the R8 project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
plugins {
`kotlin-dsl`
`java-gradle-plugin`
}
dependencies {
implementation("net.ltgt.gradle:gradle-errorprone-plugin:3.0.1")
implementation("com.google.code.gson:gson:2.10.1")
}
gradlePlugin {
plugins.register("dependencies-plugin") {
id = "dependencies-plugin"
implementationClass = "DependenciesPlugin"
}
}
kotlin { explicitApi() }