mirror of
https://github.com/johndoe6345789/tustu.git
synced 2026-04-24 13:45:00 +00:00
22 lines
260 B
Kotlin
22 lines
260 B
Kotlin
plugins {
|
|
java
|
|
}
|
|
|
|
group = "com.efianalytics"
|
|
version = "1.0.0"
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
google()
|
|
}
|
|
|
|
// Configure all subprojects
|
|
subprojects {
|
|
apply(plugin = "java")
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
google()
|
|
}
|
|
}
|