blob: 31a3ce7ca6c8330dbd80e894e7221b08d7c60912 [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 {
Søren Gjesse80ae2c72023-10-26 12:04:01 +02008 url = uri("file:../../third_party/dependencies_plugin")
Rico Winda6e4efc2023-08-03 07:51:44 +02009 }
10 maven {
Søren Gjesse80ae2c72023-10-26 12:04:01 +020011 url = uri("file:../../third_party/dependencies")
Rico Winda6e4efc2023-08-03 07:51:44 +020012 }
13 }
14}
15
16dependencyResolutionManagement {
17 repositories {
18 maven {
19 url = uri("file:../../third_party/dependencies")
20 }
Rico Winda6e4efc2023-08-03 07:51:44 +020021 }
22}
23
24rootProject.name = "resourceshrinker"
Morten Krogh-Jespersenad74d682023-09-14 15:55:18 +020025
26val root = rootProject.projectDir.parentFile
27includeBuild(root.resolve("shared"))