mirror of
https://github.com/ReaJason/MemShellParty.git
synced 2026-09-22 07:00:43 +08:00
48 lines
1.0 KiB
Groovy
48 lines
1.0 KiB
Groovy
plugins {
|
|
id 'org.gradle.toolchains.foojay-resolver-convention' version '0.9.0'
|
|
}
|
|
|
|
dependencyResolutionManagement {
|
|
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
|
|
repositories {
|
|
mavenCentral()
|
|
maven { url 'https://jitpack.io' }
|
|
}
|
|
}
|
|
|
|
rootProject.name = 'MemShellParty'
|
|
|
|
include 'bom'
|
|
include 'common'
|
|
|
|
include 'tools'
|
|
include 'tools:godzilla'
|
|
include 'tools:behinder'
|
|
include 'tools:suo5'
|
|
include 'tools:ant-sword'
|
|
|
|
include 'memshell'
|
|
include 'memshell-java8'
|
|
|
|
include 'deserialize'
|
|
include 'boot'
|
|
include 'generator'
|
|
include 'integration-test'
|
|
|
|
include 'vul'
|
|
include 'vul:vul-webapp'
|
|
include 'vul:vul-webapp-jakarta'
|
|
include 'vul:vul-webapp-expression'
|
|
include 'vul:vul-webapp-deserialize'
|
|
include 'vul:vul-springboot1'
|
|
include 'vul:vul-springboot2'
|
|
include 'vul:vul-springboot3'
|
|
include 'vul:vul-springboot2-webflux'
|
|
include 'vul:vul-springboot3-webflux'
|
|
|
|
include 'memshell-agent'
|
|
include 'memshell-agent:memshell-agent-asm'
|
|
include 'memshell-agent:memshell-agent-javassist'
|
|
include 'memshell-agent:memshell-agent-bytebuddy'
|
|
|