-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.gradle.kts
45 lines (42 loc) · 1012 Bytes
/
settings.gradle.kts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
/*
* Copyright (C) 2024 Lorenz Wrobel. - All Rights Reserved
*
* Unauthorized copying or redistribution of this file in source and binary forms via any medium
* is strictly prohibited.
*/
pluginManagement {
repositories {
google()
mavenCentral()
gradlePluginPortal()
}
}
plugins {
id("org.gradle.toolchains.foojay-resolver-convention") version "0.8.0"
}
gradle.beforeProject {
repositories {
maven {
name = "DarkCube"
url = uri("https://nexus.darkcube.eu/repository/dasbabypixel/")
}
mavenCentral {
content {
excludeGroup("net.sourceforge.streamsupport")
excludeGroup("com.lmax")
}
}
google()
}
}
rootProject.name = "gamelauncher"
include("api")
project(":api").projectDir = file("base")
include("lwjgl")
include("example")
include("android")
include("gles")
include("gles:gl")
include("netty")
include("netty:test")
include("android:app")