hch
2025-07-18 2a011653190c36e6fb1f790b3819a1d6b0744aef
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
pluginManagement {
    repositories {
        **ARTIFACTORYREPOSITORY**
        //雷电联运包的maven仓库地址+访问凭证
        maven {
            url 'https://maven.aliyun.com/repository/public'
        }
        maven {
            credentials {
                username '6445f183daafbed659eb2c18'
                password 'oWuvewt2tR1A'
            }
            url 'https://packages.aliyun.com/5f05a0346207a1a8b17f4aaf/maven/cz-public-repo'
        }
        gradlePluginPortal()
        google()
        mavenCentral()
    }
}
 
include ':launcher', ':unityLibrary'
**INCLUDES**
 
dependencyResolutionManagement {
    repositoriesMode.set(RepositoriesMode.PREFER_SETTINGS)
    repositories {
        **ARTIFACTORYREPOSITORY**
        //雷电联运包的maven仓库地址+访问凭证
        maven {
            url 'https://maven.aliyun.com/repository/public'
        }
        maven {
            credentials {
                username '6445f183daafbed659eb2c18'
                password 'oWuvewt2tR1A'
            }
            url 'https://packages.aliyun.com/5f05a0346207a1a8b17f4aaf/maven/cz-public-repo'
        }
        google()
        mavenCentral()
        flatDir {
            dirs "${project(':unityLibrary').projectDir}/libs"
        }
    }
}