/* * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. */ // Top-level build file where you can add configuration options common to all sub-projects/modules. buildscript { apply from: 'dependencies.gradle' repositories { google() mavenCentral() } dependencies { classpath config.gradlePlugin classpath config.kotlinGradlePlugin } } allprojects { repositories { google() mavenCentral() } apply from: "$rootDir/ktlint.gradle" }