blob: d87910716830cfbec738a1f2ccbca302c841b009 [file] [log] [blame]
Rico Winda6e4efc2023-08-03 07:51:44 +02001// 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
5pluginManagement {
6 repositories {
7 maven {
8 url = uri("file:../../third_party/dependencies")
9 }
10 maven {
11 url = uri("file:../../third_party/dependencies_new")
12 }
13 }
14}
15
16dependencyResolutionManagement {
17 repositories {
18 maven {
19 url = uri("file:../../third_party/dependencies")
20 }
21 maven {
22 url = uri("file:../../third_party/dependencies_new")
23 }
24 }
25}
26
27rootProject.name = "resourceshrinker"
Morten Krogh-Jespersenad74d682023-09-14 15:55:18 +020028
29val root = rootProject.projectDir.parentFile
30includeBuild(root.resolve("shared"))