mirror of
https://github.com/PaiGramTeam/SIMNet.git
synced 2024-11-16 03:55:28 +00:00
36 lines
1.1 KiB
Groovy
36 lines
1.1 KiB
Groovy
|
plugins {
|
||
|
id 'java'
|
||
|
}
|
||
|
|
||
|
group = 'org.example'
|
||
|
version = '1.0-SNAPSHOT'
|
||
|
|
||
|
repositories {
|
||
|
mavenCentral()
|
||
|
google()
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
testImplementation platform('org.junit:junit-bom:5.9.1')
|
||
|
testImplementation 'org.junit.jupiter:junit-jupiter'
|
||
|
// https://mvnrepository.com/artifact/io.github.skylot/jadx-core
|
||
|
implementation 'io.github.skylot:jadx-core:1.4.7'
|
||
|
// https://mvnrepository.com/artifact/io.github.skylot/jadx-dex-input
|
||
|
runtimeOnly 'io.github.skylot:jadx-dex-input:1.4.7'
|
||
|
// https://mvnrepository.com/artifact/io.github.skylot/jadx-java-convert
|
||
|
implementation 'io.github.skylot:jadx-java-convert:1.4.7'
|
||
|
// https://mvnrepository.com/artifact/io.github.skylot/jadx-smali-input
|
||
|
implementation 'io.github.skylot:jadx-smali-input:1.4.7'
|
||
|
// https://mvnrepository.com/artifact/io.github.skylot/jadx-plugins-api
|
||
|
implementation 'io.github.skylot:jadx-plugins-api:1.4.7'
|
||
|
}
|
||
|
|
||
|
test {
|
||
|
useJUnitPlatform()
|
||
|
}
|
||
|
|
||
|
tasks.register("run", JavaExec) {
|
||
|
classpath = sourceSets.main.runtimeClasspath
|
||
|
mainClass = "org.example.Main"
|
||
|
}
|