-
Notifications
You must be signed in to change notification settings - Fork 64
/
Copy pathsettings.gradle
61 lines (54 loc) · 2.6 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
51
52
53
54
55
56
57
58
59
60
/*
* This file was generated by the Gradle 'init' task.
*
* This project uses @Incubating APIs which are subject to change.
*/
rootProject.name = 'skidfuscator-master'
void initMaple() {
include(':modasm')
include(':ir')
include(':app-services')
include(':topdank-services')
include(':service-framework-api')
include(':flowgraph')
include(':service-util')
include(':service-framework-impl')
include(':dot4j')
include(':ir.printer')
include(':property-framework')
include(':stdlib')
include(':main')
project(":modasm").projectDir = file('org.mapleir.parent/org.mapleir.modasm')
project(":ir").projectDir = file('org.mapleir.parent/org.mapleir.ir')
project(":app-services").projectDir = file('org.mapleir.parent/org.mapleir.app-services')
project(":topdank-services").projectDir = file('org.mapleir.parent/org.mapleir.topdank-services')
project(":service-framework-api").projectDir = file('org.mapleir.parent/org.mapleir.service-framework.api')
project(":flowgraph").projectDir = file('org.mapleir.parent/org.mapleir.flowgraph')
project(":service-util").projectDir = file('org.mapleir.parent/org.mapleir.service-util')
project(":service-framework-impl").projectDir = file('org.mapleir.parent/org.mapleir.service-framework.impl')
project(":dot4j").projectDir = file('org.mapleir.parent/org.mapleir.dot4j')
project(":ir.printer").projectDir = file('org.mapleir.parent/org.mapleir.ir.printer')
project(":property-framework").projectDir = file('org.mapleir.parent/org.mapleir.property-framework')
project(":stdlib").projectDir = file('org.mapleir.parent/org.mapleir.stdlib')
project(":main").projectDir = file('org.mapleir.parent/org.mapleir.main')
}
void initBase() {
include(':annotations')
include ':commons'
include ':sdk'
include ':pure-analysis'
include ':depend-analysis'
include ':obfuscator'
include ':client-standalone'
include ':gradle-plugin'
project(":annotations").projectDir = file('dev.skidfuscator.annotations')
project(":commons").projectDir = file('dev.skidfuscator.commons')
project(":sdk").projectDir = file('dev.skidfuscator.sdk')
project(":pure-analysis").projectDir = file('dev.skidfuscator.obfuscator.pureanalysis')
project(":depend-analysis").projectDir = file('dev.skidfuscator.obfuscator.dependanalysis')
project(":obfuscator").projectDir = file('dev.skidfuscator.obfuscator')
project(":client-standalone").projectDir = file('dev.skidfuscator.client.standalone')
project(":gradle-plugin").projectDir = file('dev.skidfuscator.gradle-plugin')
}
initMaple()
initBase()