mirror of
https://github.com/ultrasonic/ultrasonic
synced 2025-01-23 05:33:12 +01:00
95b20b486d
This allows better and easier versioning management across modules Signed-off-by: Yahor Berdnikau <egorr.berd@gmail.com>
20 lines
363 B
Groovy
20 lines
363 B
Groovy
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
apply from: 'dependencies.gradle'
|
|
|
|
buildscript {
|
|
apply from: 'dependencies.gradle'
|
|
|
|
repositories {
|
|
jcenter()
|
|
}
|
|
dependencies {
|
|
classpath gradlePlugins.androidTools
|
|
}
|
|
}
|
|
|
|
allprojects {
|
|
repositories {
|
|
jcenter()
|
|
}
|
|
}
|