-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbuild.gradle
101 lines (89 loc) · 3.09 KB
/
build.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext {
mavenPublishUrl = 'https://mvnrepo.jiagouyun.com/repository'
getDefaultProperties = this.&getDefaultProperties
}
Properties properties = new Properties()
def localPropertiesPath = 'local.properties'
if (project.rootProject.file(localPropertiesPath).exists()) {
properties.load(project.rootProject.file(localPropertiesPath).newDataInputStream())
}
def appIdString = properties.getProperty("RUM_APP_ID")
def datakitRUMUrl = properties.getProperty("DATAKIT_URL")
def datawayRUMUrl = properties.getProperty("DATAWAY_URL")
def clientToken = properties.getProperty("CLIENT_TOKEN")
def datawayToken = properties.getProperty("DATAWAY_TOKEN")
def trackId = properties.getProperty("TRACK_ID")
def traceUrl = properties.getProperty("TRACE_URL")
ext.ft_env = [
'rumAppid' : appIdString,
'datakitRUMUrl' : datakitRUMUrl,
'datawayRUMUrl' : datawayRUMUrl,
'clientToken' : clientToken,
'datawayToken' : datawayToken,
'trackId' : trackId,
'traceUrl' : traceUrl,
'prodTestEnv' : 'gray',
'prodPublishEnv': 'prod'
]
repositories {
google()
// jcenter()
// mavenLocal()
maven {
url "${mavenPublishUrl}/maven-releases"
}
maven {
url "https://plugins.gradle.org/m2/"
}
flatDir dirs: "ft-plugin/build/libs"
}
dependencies {
classpath 'com.android.tools.build:gradle:7.4.2'
classpath 'com.cloudcare.ft.mobile.sdk.tracker.plugin:ft-plugin:1.3.3'
// classpath 'com.guardsquare:proguard-gradle:7.1.0'
// classpath files('ft-plugin/build/libs/ft-plugin-1.3.1-alpha02.jar')
classpath "com.github.gmazzo:gradle-buildconfig-plugin:3.1.0"
classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.8.0'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
google()
mavenCentral()
mavenLocal()
maven {
url "${mavenPublishUrl}/maven-releases"
}
//
// flatDir {
// dirs 'libs'
// }
}
configurations.all {
resolutionStrategy {
force("org.objenesis:objenesis:2.6")
}
}
}
def getDefaultProperties() {
def userName = System.getProperty("LDAP_ACCOUNT")
def password = System.getProperty("LDAP_PWD")
Properties properties = new Properties()
if (userName != null && password != null) {
properties.setProperty("LDAP_ACCOUNT", userName)
properties.setProperty("LDAP_PWD", password)
} else {
def file = project.rootProject.file('local.properties')
if (file.exists()) {
properties.load(file.newDataInputStream())
}
}
return properties
}
task clean(type: Delete) {
delete rootProject.buildDir
}