forked from felHR85/UsbSerial
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.gradle.kts
More file actions
47 lines (34 loc) · 899 Bytes
/
settings.gradle.kts
File metadata and controls
47 lines (34 loc) · 899 Bytes
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
/*
*
* StreamWIDE (Team on The Run)
*
* @createdBy AndroidTeam on Mon, 30 Oct 2023 12:19:45 +0100
* @copyright Copyright (c) 2023 StreamWIDE UK Ltd (Team on the Run)
* @email support@teamontherun.com
*
* © Copyright 2023 StreamWIDE UK Ltd (Team on the Run). StreamWIDE is the copyright holder
* of all code contained in this file. Do not redistribute or
* re-use without permission.
*
* @lastModifiedOn Mon, 30 Oct 2023 11:57:58 +0100
*/
rootProject.name = "USB_SERIAL_STW"
pluginManagement {
includeBuild("build-logic")
repositories {
gradlePluginPortal()
google()
mavenCentral()
}
}
plugins {
id("com.gradle.enterprise") version "3.9"
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
}
}
include(":lib")