Skip to content

Commit 52ea2d8

Browse files
committed
chore: upgrade deps
1 parent a5cb87b commit 52ea2d8

File tree

14 files changed

+31
-17
lines changed

14 files changed

+31
-17
lines changed

boot/build.gradle.kts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
plugins {
22
id("java")
3-
id("org.springframework.boot") version "3.5.7"
3+
id("org.springframework.boot") version "3.5.8"
44
id("io.spring.dependency-management") version "1.1.7"
55
}
66

@@ -21,6 +21,8 @@ configurations {
2121
}
2222
}
2323

24+
extra["byte-buddy.version"] = libs.versions.byte.buddy.get()
25+
2426
dependencies {
2527
implementation(project(":generator")) {
2628
exclude(group = "commons-logging", module = "commons-logging")

build-logic/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@ repositories {
77
}
88

99
dependencies {
10-
implementation("com.vanniktech:gradle-maven-publish-plugin:0.34.0")
10+
implementation("com.vanniktech:gradle-maven-publish-plugin:0.35.0")
1111
}

build-logic/src/main/kotlin/maven-publish-convention.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ plugins {
33
}
44

55
mavenPublishing {
6-
publishToMavenCentral(true)
6+
publishToMavenCentral()
77
signAllPublications()
88
coordinates(
99
"io.github.reajason",

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ idea {
99
}
1010
}
1111

12-
version = "2.4.0"
12+
version = "2.4.1-SNAPSHOT"
1313

1414
tasks.register("publishAllToMavenCentral") {
1515
dependsOn(":memshell-party-common:publishToMavenCentral")

generator/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
plugins {
2-
id("java")
2+
id("java-library")
33
alias(libs.plugins.lombok)
44
id("maven-publish-convention")
55
}
@@ -29,7 +29,7 @@ tasks.test {
2929
dependencies {
3030
implementation(project(":memshell-party-common"))
3131
implementation(project(":packer"))
32-
implementation(libs.byte.buddy)
32+
api(libs.byte.buddy)
3333
implementation(libs.asm.commons)
3434
implementation(libs.javax.websocket.api)
3535
implementation(libs.javax.servlet.api)

generator/src/main/java/com/reajason/javaweb/memshell/config/CommandConfig.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ public class CommandConfig extends ShellToolConfig {
3535
private ImplementationClass implementationClass = ImplementationClass.RuntimeExec;
3636

3737
/**
38-
* 命令执行模板,例如 sh -c "{command}" 2>&1,使用 {command} 作为占位符
38+
* 命令执行模板,使用 {command} 作为占位符
3939
*/
4040
private String template;
4141

generator/src/main/java/com/reajason/javaweb/memshell/injector/apusic/ApusicFilterInjector.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ private String getContextRoot(Object context) {
8080

8181
/**
8282
* context: com.apusic.web.container.WebContainer
83-
* context -> webapp: com.apusic.deploy.runtime.WebModule
83+
* context - webapp: com.apusic.deploy.runtime.WebModule
8484
* /usr/local/ass/lib/apusic.jar
8585
*/
8686
public Set<Object> getContext() throws Exception {

generator/src/main/java/com/reajason/javaweb/probe/config/ResponseBodyConfig.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ public class ResponseBodyConfig extends ProbeContentConfig {
2929
private String base64Bytes;
3030

3131
/**
32-
* 命令执行模板,例如 sh -c "{command}" 2>&1,使用 {command} 作为占位符
32+
* 命令执行模板,使用 {command} 作为占位符
3333
*/
3434
private String commandTemplate;
3535

generator/src/main/java/com/reajason/javaweb/probe/payload/ServerProbe.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
/**
1010
* HTTP 服务类型识别,主要识别 Servlet 容器实现,例如 WildFly 识别为 Undertow,Payara 识别为 GlassFish
1111
* 很多国产中间件都是基于 GlassFish 改的,都会识别为 GlassFish
12-
* <br/>
1312
* 额外需要注意:
1413
* 1. 不会识别 SpringWebMVC Struct2 这种框架,只识别其提供 HTTP 服务的 Servlet 容器类型
1514
* 2. 识别的顺序很重要,部分类型的识别单独拿出来是不准确的,没有测试的情况下,不要以下的 if 判断顺序

gradle/libs.versions.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@ reactor-netty = "1.1.25"
1010
jackson = "2.19.0"
1111
jetbrains-annotations = "26.0.2"
1212

13-
byte-buddy = "1.18.1"
13+
byte-buddy = "1.18.2"
1414
commons-io = "2.21.0"
15-
commons-lang3 = "3.19.0"
15+
commons-lang3 = "3.20.0"
1616
commons-codec = "1.20.0"
17-
logback = "1.5.21"
18-
okhttp3 = "5.3.0"
17+
logback = "1.5.22"
18+
okhttp3 = "5.3.2"
1919
fastjson2 = "2.0.60"
2020
java-websocket = "1.6.0"
2121

0 commit comments

Comments
 (0)