-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsettings.gradle
More file actions
30 lines (28 loc) · 924 Bytes
/
settings.gradle
File metadata and controls
30 lines (28 loc) · 924 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
pluginManagement {
buildscript {
repositories {
mavenCentral()
maven { url 'https://storage.googleapis.com/r8-releases/raw' }
}
dependencies {
classpath "com.android.tools:r8:9.1.31"
}
}
}
def isDevelopment = properties['development'].toBoolean()
if (isDevelopment) {
includeBuild('paranoid') {
dependencySubstitution {
substitute module('com.joom.paranoid:paranoid-gradle-plugin') using project(':gradle-plugin')
substitute module('com.joom.paranoid:paranoid-processor') using project(':processor')
substitute module('com.joom.paranoid:paranoid-core') using project(':core')
}
}
}
include ':sample'
include ':processor-tests:all-chars-string'
include ':processor-tests:loads-of-strings'
include ':processor-tests:long-string'
include ':processor-tests:subproject'
include ':processor-tests:subproject-android'
include ':processor-tests:subproject-java'