mirror of
https://github.com/littlektframework/littlekt-game-template.git
synced 2025-01-10 19:40:54 -07:00
20 lines
309 B
Text
20 lines
309 B
Text
|
buildscript {
|
||
|
repositories {
|
||
|
gradlePluginPortal()
|
||
|
google()
|
||
|
mavenCentral()
|
||
|
}
|
||
|
dependencies {
|
||
|
classpath(libs.bundles.plugins)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
allprojects {
|
||
|
repositories {
|
||
|
google()
|
||
|
mavenCentral()
|
||
|
}
|
||
|
|
||
|
group = "com.game.template"
|
||
|
version = "1.0"
|
||
|
}
|