-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.gradle
50 lines (50 loc) · 1.75 KB
/
settings.gradle
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
46
47
48
49
50
pluginManagement {
repositories {
gradlePluginPortal()
google()
mavenCentral()
maven {
url = uri("https://maven.pkg.github.com/5hmlA/sparkj")
credentials {
// https://www.sojson.com/ascii.html
username = '''\u005a\u0075\u0059\u0075\u006e'''
password = """\u0067\u0068\u0070\u005f\u004f\u0043\u0042\u0045\u007a\u006a\u0052\u0069\u006e\u0043\u0065\u0048\u004c\u0068\u006b\u0052\u0036\u0056\u0061\u0041\u0074\u0068\u004f\u004a\u0059\u0042\u0047\u0044\u0073\u0049\u0032\u0070\u0064\u0064\u0069\u0066"""
}
}
maven{
url = uri("$rootDir/repo")
}
}
}
dependencyResolutionManagement {
// repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
versionCatalogs {
create("wings") {
from(files("gradle/wings.versions.toml"))
}
}
repositories {
google()
mavenCentral()
maven {
url = uri("https://maven.pkg.github.com/5hmlA/sparkj")
credentials {
username = '''\u005a\u0075\u0059\u0075\u006e'''
password = """\u0067\u0068\u0070\u005f\u004f\u0043\u0042\u0045\u007a\u006a\u0052\u0069\u006e\u0043\u0065\u0048\u004c\u0068\u006b\u0052\u0036\u0056\u0061\u0041\u0074\u0068\u004f\u004a\u0059\u0042\u0047\u0044\u0073\u0049\u0032\u0070\u0064\u0064\u0069\u0066"""
}
}
maven{
url = uri("$rootDir/repo")
}
}
}
rootProject.name = "surgery"
//includeBuild("surgery-api")
includeBuild("surgery")
include ':app'
include ':surgery-api'
include ':surgery-helper'
include ':surgery-doctors'
include ':surgery-doctor-arouter'
include ':surgery-doctor-tryfinally'
include ':mylibrary'