blob: ba393c77aa698f30dc5c2c803b5e3a25e7613ab8 [file] [log] [blame]
Morten Krogh-Jespersen5a37de82023-03-02 01:42:28 +01001// Copyright (c) 2023, the R8 project authors. Please see the AUTHORS file
2// for details. All rights reserved. Use of this source code is governed by a
3// BSD-style license that can be found in the LICENSE file.
4
5plugins {
6 `kotlin-dsl`
7 `java-gradle-plugin`
8}
9
10gradlePlugin {
11 plugins.register("dependencies-plugin") {
12 id = "dependencies-plugin"
13 implementationClass = "DependenciesPlugin"
14 }
15}