mirror of
https://github.com/ReaJason/MemShellParty.git
synced 2026-09-21 22:50:42 +08:00
refactor: rename modules
This commit is contained in:
+2
-2
@@ -7,9 +7,9 @@ allprojects {
|
||||
apply(plugin: 'jacoco')
|
||||
}
|
||||
|
||||
if (it.name != 'bom' && !it.name.startsWith("vul")) {
|
||||
if (it.name != 'memshell-party-bom' && !it.name.startsWith("vul")) {
|
||||
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
|
||||
|
||||
dependencies {
|
||||
implementation project(":common")
|
||||
implementation project(":memshell-party-common")
|
||||
implementation 'net.bytebuddy:byte-buddy'
|
||||
|
||||
implementation 'com.caucho:hessian:4.0.66'
|
||||
|
||||
@@ -33,7 +33,7 @@ test {
|
||||
}
|
||||
|
||||
dependencies {
|
||||
implementation project(":common")
|
||||
implementation project(":memshell-party-common")
|
||||
implementation project(":deserialize")
|
||||
|
||||
implementation project(":memshell")
|
||||
|
||||
@@ -7,7 +7,7 @@ version = rootProject.version
|
||||
|
||||
dependencies {
|
||||
testImplementation project(":vul:vul-webapp")
|
||||
testImplementation project(":common")
|
||||
testImplementation project(":memshell-party-common")
|
||||
testImplementation project(":tools:behinder")
|
||||
testImplementation project(":tools:godzilla")
|
||||
testImplementation project(":tools:suo5")
|
||||
|
||||
@@ -2,6 +2,10 @@ plugins {
|
||||
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 {
|
||||
constraints {
|
||||
api 'net.bytebuddy:byte-buddy:1.17.5'
|
||||
@@ -15,15 +19,15 @@ dependencies {
|
||||
api 'org.springframework:spring-webflux:5.3.24'
|
||||
api 'io.projectreactor.netty:reactor-netty-core:1.1.25'
|
||||
|
||||
api 'commons-io:commons-io:2.+'
|
||||
api 'org.apache.commons:commons-lang3:3.+'
|
||||
api 'commons-codec:commons-codec:1.+'
|
||||
api 'ch.qos.logback:logback-classic:1.+'
|
||||
api 'commons-io:commons-io:2.18.0'
|
||||
api 'org.apache.commons:commons-lang3:3.17.0'
|
||||
api 'commons-codec:commons-codec:1.18.0'
|
||||
api 'ch.qos.logback:logback-classic:1.5.18'
|
||||
|
||||
api 'org.apache.bcel:bcel:5.2'
|
||||
|
||||
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 'org.jetbrains:annotations:26.0.1'
|
||||
@@ -35,4 +39,4 @@ dependencies {
|
||||
api 'org.testcontainers:testcontainers:1.20.5'
|
||||
api 'org.testcontainers:junit-jupiter:1.20.5'
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,8 +1,5 @@
|
||||
plugins {
|
||||
id "io.freefair.lombok" version "8.11"
|
||||
}
|
||||
|
||||
group = 'com.reajason.javaweb'
|
||||
group = 'io.github.reajason'
|
||||
description = "Common Utilities for MemShellParty"
|
||||
version = rootProject.version
|
||||
|
||||
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'
|
||||
}
|
||||
|
||||
rootProject.name = 'MemShellParty'
|
||||
rootProject.name = 'memshell-party'
|
||||
|
||||
include 'bom'
|
||||
include 'common'
|
||||
include 'memshell-party-bom'
|
||||
include 'memshell-party-common'
|
||||
|
||||
include 'tools'
|
||||
include 'tools:godzilla'
|
||||
|
||||
@@ -14,7 +14,7 @@ java {
|
||||
}
|
||||
|
||||
dependencies {
|
||||
implementation project(":common")
|
||||
implementation project(":memshell-party-common")
|
||||
implementation 'net.bytebuddy:byte-buddy'
|
||||
|
||||
implementation 'javax.servlet:javax.servlet-api'
|
||||
|
||||
@@ -15,7 +15,7 @@ java {
|
||||
|
||||
|
||||
dependencies {
|
||||
implementation project(":common")
|
||||
implementation project(":memshell-party-common")
|
||||
implementation 'net.bytebuddy:byte-buddy'
|
||||
|
||||
implementation 'commons-io:commons-io'
|
||||
|
||||
@@ -13,7 +13,7 @@ java {
|
||||
|
||||
|
||||
dependencies {
|
||||
implementation project(":common")
|
||||
implementation project(":memshell-party-common")
|
||||
|
||||
implementation 'net.bytebuddy:byte-buddy'
|
||||
|
||||
|
||||
@@ -13,7 +13,7 @@ java {
|
||||
|
||||
|
||||
dependencies {
|
||||
implementation project(":common")
|
||||
implementation project(":memshell-party-common")
|
||||
|
||||
implementation 'net.bytebuddy:byte-buddy'
|
||||
|
||||
|
||||
Reference in New Issue
Block a user