mirror of
https://github.com/github/codeql.git
synced 2026-04-05 07:08:31 +02:00
We are no longer bound to the platform-specific directories, so simplify the test organization. If you don't want this change, just skip merging this PR. It's purely optional. I kept the platform-specific directories around under `kotlin`, but you could also easily merge all these together if you find them unhelpful. I'll leave that change to you.
45 lines
1.4 KiB
Groovy
45 lines
1.4 KiB
Groovy
buildscript {
|
|
|
|
/**
|
|
* The repositories block configures the repositories Gradle uses to
|
|
* search or download the dependencies. Gradle pre-configures support for remote
|
|
* repositories such as JCenter, Maven Central, and Ivy. You can also use local
|
|
* repositories or define your own remote repositories. The code below defines
|
|
* JCenter as the repository Gradle should use to look for its dependencies.
|
|
*
|
|
* New projects created using Android Studio 3.0 and higher also include
|
|
* Google's Maven repository.
|
|
*/
|
|
|
|
repositories {
|
|
google()
|
|
jcenter()
|
|
}
|
|
|
|
/**
|
|
* The dependencies block configures the dependencies Gradle needs to use
|
|
* to build your project. The following line adds Android plugin for Gradle
|
|
* version 7.0.0 as a classpath dependency.
|
|
*/
|
|
|
|
dependencies {
|
|
classpath 'com.android.tools.build:gradle:7.0.0'
|
|
}
|
|
}
|
|
|
|
/**
|
|
* The allprojects block is where you configure the repositories and
|
|
* dependencies used by all modules in your project, such as third-party plugins
|
|
* or libraries. However, you should configure module-specific dependencies in
|
|
* each module-level build.gradle file. For new projects, Android Studio
|
|
* includes JCenter and Google's Maven repository by default, but it does not
|
|
* configure any dependencies (unless you select a template that requires some).
|
|
*/
|
|
|
|
allprojects {
|
|
repositories {
|
|
google()
|
|
jcenter()
|
|
}
|
|
}
|