mirror of
https://github.com/ReaJason/MemShellParty.git
synced 2026-09-25 00:11:52 +08:00
refactor: rename modules
This commit is contained in:
+2
-2
@@ -7,9 +7,9 @@ allprojects {
|
|||||||
apply(plugin: 'jacoco')
|
apply(plugin: 'jacoco')
|
||||||
}
|
}
|
||||||
|
|
||||||
if (it.name != 'bom' && !it.name.startsWith("vul")) {
|
if (it.name != 'memshell-party-bom' && !it.name.startsWith("vul")) {
|
||||||
dependencies {
|
dependencies {
|
||||||
implementation platform(project(':bom'))
|
implementation platform(project(':memshell-party-bom'))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
File diff suppressed because one or more lines are too long
@@ -6,7 +6,7 @@ group = 'com.reajason.javaweb'
|
|||||||
version = rootProject.version
|
version = rootProject.version
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
implementation project(":common")
|
implementation project(":memshell-party-common")
|
||||||
implementation 'net.bytebuddy:byte-buddy'
|
implementation 'net.bytebuddy:byte-buddy'
|
||||||
|
|
||||||
implementation 'com.caucho:hessian:4.0.66'
|
implementation 'com.caucho:hessian:4.0.66'
|
||||||
|
|||||||
@@ -33,7 +33,7 @@ test {
|
|||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
implementation project(":common")
|
implementation project(":memshell-party-common")
|
||||||
implementation project(":deserialize")
|
implementation project(":deserialize")
|
||||||
|
|
||||||
implementation project(":memshell")
|
implementation project(":memshell")
|
||||||
|
|||||||
@@ -7,7 +7,7 @@ version = rootProject.version
|
|||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
testImplementation project(":vul:vul-webapp")
|
testImplementation project(":vul:vul-webapp")
|
||||||
testImplementation project(":common")
|
testImplementation project(":memshell-party-common")
|
||||||
testImplementation project(":tools:behinder")
|
testImplementation project(":tools:behinder")
|
||||||
testImplementation project(":tools:godzilla")
|
testImplementation project(":tools:godzilla")
|
||||||
testImplementation project(":tools:suo5")
|
testImplementation project(":tools:suo5")
|
||||||
|
|||||||
@@ -2,6 +2,10 @@ plugins {
|
|||||||
id 'java-platform'
|
id 'java-platform'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
group = "io.github.reajason"
|
||||||
|
description = "This Bill of Materials POM can be used to ease dependency management when referencing multiple MemShellParty artifacts using Gradle or Maven."
|
||||||
|
version = rootProject.version
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
constraints {
|
constraints {
|
||||||
api 'net.bytebuddy:byte-buddy:1.17.5'
|
api 'net.bytebuddy:byte-buddy:1.17.5'
|
||||||
@@ -15,15 +19,15 @@ dependencies {
|
|||||||
api 'org.springframework:spring-webflux:5.3.24'
|
api 'org.springframework:spring-webflux:5.3.24'
|
||||||
api 'io.projectreactor.netty:reactor-netty-core:1.1.25'
|
api 'io.projectreactor.netty:reactor-netty-core:1.1.25'
|
||||||
|
|
||||||
api 'commons-io:commons-io:2.+'
|
api 'commons-io:commons-io:2.18.0'
|
||||||
api 'org.apache.commons:commons-lang3:3.+'
|
api 'org.apache.commons:commons-lang3:3.17.0'
|
||||||
api 'commons-codec:commons-codec:1.+'
|
api 'commons-codec:commons-codec:1.18.0'
|
||||||
api 'ch.qos.logback:logback-classic:1.+'
|
api 'ch.qos.logback:logback-classic:1.5.18'
|
||||||
|
|
||||||
api 'org.apache.bcel:bcel:5.2'
|
api 'org.apache.bcel:bcel:5.2'
|
||||||
|
|
||||||
api 'org.java-websocket:Java-WebSocket:1.5.7'
|
api 'org.java-websocket:Java-WebSocket:1.5.7'
|
||||||
api 'com.squareup.okhttp3:okhttp:4.+'
|
api 'com.squareup.okhttp3:okhttp:4.12.0'
|
||||||
api 'com.alibaba.fastjson2:fastjson2:2.0.53'
|
api 'com.alibaba.fastjson2:fastjson2:2.0.53'
|
||||||
|
|
||||||
api 'org.jetbrains:annotations:26.0.1'
|
api 'org.jetbrains:annotations:26.0.1'
|
||||||
@@ -1,8 +1,5 @@
|
|||||||
plugins {
|
group = 'io.github.reajason'
|
||||||
id "io.freefair.lombok" version "8.11"
|
description = "Common Utilities for MemShellParty"
|
||||||
}
|
|
||||||
|
|
||||||
group = 'com.reajason.javaweb'
|
|
||||||
version = rootProject.version
|
version = rootProject.version
|
||||||
|
|
||||||
java {
|
java {
|
||||||
File diff suppressed because one or more lines are too long
+3
-3
@@ -2,10 +2,10 @@ plugins {
|
|||||||
id 'org.gradle.toolchains.foojay-resolver-convention' version '0.9.0'
|
id 'org.gradle.toolchains.foojay-resolver-convention' version '0.9.0'
|
||||||
}
|
}
|
||||||
|
|
||||||
rootProject.name = 'MemShellParty'
|
rootProject.name = 'memshell-party'
|
||||||
|
|
||||||
include 'bom'
|
include 'memshell-party-bom'
|
||||||
include 'common'
|
include 'memshell-party-common'
|
||||||
|
|
||||||
include 'tools'
|
include 'tools'
|
||||||
include 'tools:godzilla'
|
include 'tools:godzilla'
|
||||||
|
|||||||
@@ -14,7 +14,7 @@ java {
|
|||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
implementation project(":common")
|
implementation project(":memshell-party-common")
|
||||||
implementation 'net.bytebuddy:byte-buddy'
|
implementation 'net.bytebuddy:byte-buddy'
|
||||||
|
|
||||||
implementation 'javax.servlet:javax.servlet-api'
|
implementation 'javax.servlet:javax.servlet-api'
|
||||||
|
|||||||
@@ -15,7 +15,7 @@ java {
|
|||||||
|
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
implementation project(":common")
|
implementation project(":memshell-party-common")
|
||||||
implementation 'net.bytebuddy:byte-buddy'
|
implementation 'net.bytebuddy:byte-buddy'
|
||||||
|
|
||||||
implementation 'commons-io:commons-io'
|
implementation 'commons-io:commons-io'
|
||||||
|
|||||||
@@ -13,7 +13,7 @@ java {
|
|||||||
|
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
implementation project(":common")
|
implementation project(":memshell-party-common")
|
||||||
|
|
||||||
implementation 'net.bytebuddy:byte-buddy'
|
implementation 'net.bytebuddy:byte-buddy'
|
||||||
|
|
||||||
|
|||||||
@@ -13,7 +13,7 @@ java {
|
|||||||
|
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
implementation project(":common")
|
implementation project(":memshell-party-common")
|
||||||
|
|
||||||
implementation 'net.bytebuddy:byte-buddy'
|
implementation 'net.bytebuddy:byte-buddy'
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user