blob: 5f32acf7fc8e0e1c53e39096ec36f6ce8cf3e70c [file] [log] [blame] [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") }
gradlePlugin {
plugins.register("dependencies-plugin") {
id = "dependencies-plugin"
implementationClass = "DependenciesPlugin"
}
}
kotlin { explicitApi() }