-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbuild.gradle
123 lines (109 loc) · 3.45 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
buildscript {
ext.kotlinVersion = '1.9.24'
repositories {
mavenCentral()
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
}
}
subprojects {
group 'com.kotcrab.mist'
version = '0.0.1'
}
allprojects {
apply plugin: 'java'
apply plugin: 'kotlin'
ext {
gdxVersion = '1.9.9'
visUiVersion = '1.4.2'
ktxVersion = '1.9.9-b1'
jacksonVersion = '2.17.1'
}
repositories {
mavenCentral()
maven { url 'https://jitpack.io' }
maven { url "https://oss.sonatype.org/content/repositories/snapshots/" }
maven { url "https://oss.sonatype.org/content/repositories/releases/" }
}
kotlin {
jvmToolchain(11)
}
}
project(':core') {
dependencies {
api "org.jetbrains.kotlin:kotlin-stdlib:$kotlinVersion"
api "org.jetbrains.kotlin:kotlin-reflect:$kotlinVersion"
api "com.github.kotcrab:kio:9111dcc"
api "com.fasterxml.jackson.core:jackson-core:$jacksonVersion"
api "com.fasterxml.jackson.core:jackson-databind:$jacksonVersion"
api "com.fasterxml.jackson.module:jackson-module-kotlin:$jacksonVersion"
}
}
project(':asm') {
dependencies {
api project(":core")
testImplementation "com.kotcrab.kmips:kmips:1.2"
testImplementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.1"
testImplementation "org.junit.jupiter:junit-jupiter-api:5.3.1"
testImplementation "org.junit.jupiter:junit-jupiter-params:5.3.1"
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:5.3.1"
testImplementation "org.assertj:assertj-core:3.11.1"
testImplementation "io.mockk:mockk:1.8.7"
testImplementation "net.bytebuddy:byte-buddy:1.8.22"
testImplementation "net.bytebuddy:byte-buddy-agent:1.8.22"
}
}
project(':decompiler') {
dependencies {
api project(":core")
api project(":asm")
implementation "org.apache.commons:commons-collections4:4.0"
}
}
project(':ghidra-client') {
dependencies {
api project(":core")
implementation "io.github.rybalkinsd:kohttp:0.12.0"
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.1"
}
}
project(':recompiler') {
dependencies {
api project(":core")
api project(":asm")
api project(":ghidra-client")
api project(":symbolic") // For ModuleMemory
}
}
project(':symbolic') {
dependencies {
api project(":core")
api project(":asm")
api project(":ghidra-client")
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.1"
implementation "io.ksmt:ksmt-core:0.5.23"
implementation "io.ksmt:ksmt-bitwuzla:0.5.23"
implementation "com.kotcrab.kmips:kmips:1.7"
implementation "com.github.kotcrab:kmipsx:87feb7a"
}
}
project(':ui-gdx') {
apply plugin: 'application'
mainClassName = "mist.AppKt"
dependencies {
api project(":core")
api project(":asm")
api project(":decompiler")
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:1.0.1"
implementation "com.badlogicgames.gdx:gdx:$gdxVersion"
implementation "com.badlogicgames.gdx:gdx-backend-lwjgl3:$gdxVersion"
implementation "com.badlogicgames.gdx:gdx-platform:$gdxVersion:natives-desktop"
implementation "com.kotcrab.vis:vis-ui:$visUiVersion"
implementation "io.github.libktx:ktx-vis:$ktxVersion"
implementation "io.github.libktx:ktx-actors:$ktxVersion"
implementation "io.github.libktx:ktx-async:$ktxVersion"
implementation "io.github.libktx:ktx-assets:$ktxVersion"
implementation "io.github.libktx:ktx-inject:$ktxVersion"
}
}