Morten Krogh-Jespersen | 5a37de8 | 2023-03-02 01:42:28 +0100 | [diff] [blame] | 1 | // 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 | |||||
5 | plugins { | ||||
6 | `kotlin-dsl` | ||||
7 | `java-gradle-plugin` | ||||
8 | } | ||||
9 | |||||
10 | gradlePlugin { | ||||
11 | plugins.register("dependencies-plugin") { | ||||
12 | id = "dependencies-plugin" | ||||
13 | implementationClass = "DependenciesPlugin" | ||||
14 | } | ||||
15 | } |