From 0ac7cd8b15ca87f4d2f25b21f58a142b28949f69 Mon Sep 17 00:00:00 2001 From: "chaya.cy" Date: Fri, 17 Nov 2023 15:27:30 +0800 Subject: [PATCH 01/18] add just springbooot3 samples --- samples/springboot3-samples/db/mybatis/README.md | 13 ------------- .../springboot3-samples/db/mybatis/base/pom.xml | 14 +++++++++----- samples/springboot3-samples/logging/README.md | 13 ------------- .../logging/log4j2/base/pom.xml | 14 +++++++++----- samples/springboot3-samples/msg/kafka/README.md | 13 ------------- samples/springboot3-samples/msg/kafka/base/pom.xml | 14 +++++++++----- samples/springboot3-samples/pom.xml | 4 ++-- samples/springboot3-samples/web/tomcat/README.md | 13 ------------- .../springboot3-samples/web/tomcat/base/pom.xml | 14 +++++++++----- sofa-serverless-runtime/pom.xml | 6 +++--- .../log4j2/SOFAServerlessLog4j2LoggingSystem.java | 13 +++---------- 11 files changed, 44 insertions(+), 87 deletions(-) diff --git a/samples/springboot3-samples/db/mybatis/README.md b/samples/springboot3-samples/db/mybatis/README.md index 2e54734d2..2ac87ca86 100644 --- a/samples/springboot3-samples/db/mybatis/README.md +++ b/samples/springboot3-samples/db/mybatis/README.md @@ -25,19 +25,6 @@ base 为普通 springboot 改造成的基座,改造内容为在 pom 里增加 - - - com.alipay.sofa - log-sofa-boot-starter - 999-not-exist - - - - com.alipay.sofa - sofa-boot-alipay-autoconfigure - - - diff --git a/samples/springboot3-samples/db/mybatis/base/pom.xml b/samples/springboot3-samples/db/mybatis/base/pom.xml index 9a273423c..e130e7ddf 100644 --- a/samples/springboot3-samples/db/mybatis/base/pom.xml +++ b/samples/springboot3-samples/db/mybatis/base/pom.xml @@ -83,18 +83,22 @@ - com.alipay.sofa log-sofa-boot-starter - 999-not-exist + 3.9.1 - - com.alipay.sofa - sofa-boot-alipay-autoconfigure + com.alipay.sofa.common + sofa-common-tools + + + com.alipay.sofa.common + sofa-common-tools + 2.0.3 + com.alipay.sofa.serverless diff --git a/samples/springboot3-samples/logging/README.md b/samples/springboot3-samples/logging/README.md index 69176dfc1..bf678e66b 100644 --- a/samples/springboot3-samples/logging/README.md +++ b/samples/springboot3-samples/logging/README.md @@ -29,19 +29,6 @@ base 为普通 springboot 改造成的基座,改造内容为在 pom 里增加 - - - com.alipay.sofa - log-sofa-boot-starter - 999-not-exist - - - - com.alipay.sofa - sofa-boot-alipay-autoconfigure - - - diff --git a/samples/springboot3-samples/logging/log4j2/base/pom.xml b/samples/springboot3-samples/logging/log4j2/base/pom.xml index d336c53ef..8580f5be2 100644 --- a/samples/springboot3-samples/logging/log4j2/base/pom.xml +++ b/samples/springboot3-samples/logging/log4j2/base/pom.xml @@ -51,18 +51,22 @@ - com.alipay.sofa log-sofa-boot-starter - 999-not-exist + 3.9.1 - - com.alipay.sofa - sofa-boot-alipay-autoconfigure + com.alipay.sofa.common + sofa-common-tools + + + com.alipay.sofa.common + sofa-common-tools + 2.0.3 + com.lmax disruptor diff --git a/samples/springboot3-samples/msg/kafka/README.md b/samples/springboot3-samples/msg/kafka/README.md index eab9a5c6e..59fda42c1 100644 --- a/samples/springboot3-samples/msg/kafka/README.md +++ b/samples/springboot3-samples/msg/kafka/README.md @@ -27,19 +27,6 @@ base 为普通 springboot 改造成的基座,改造内容为在 pom 里增加 - - - com.alipay.sofa - log-sofa-boot-starter - 999-not-exist - - - - com.alipay.sofa - sofa-boot-alipay-autoconfigure - - - diff --git a/samples/springboot3-samples/msg/kafka/base/pom.xml b/samples/springboot3-samples/msg/kafka/base/pom.xml index 920852b4b..6fe830e0e 100644 --- a/samples/springboot3-samples/msg/kafka/base/pom.xml +++ b/samples/springboot3-samples/msg/kafka/base/pom.xml @@ -62,18 +62,22 @@ - com.alipay.sofa log-sofa-boot-starter - 999-not-exist + 3.9.1 - - com.alipay.sofa - sofa-boot-alipay-autoconfigure + com.alipay.sofa.common + sofa-common-tools + + + com.alipay.sofa.common + sofa-common-tools + 2.0.3 + com.alipay.sofa.serverless diff --git a/samples/springboot3-samples/pom.xml b/samples/springboot3-samples/pom.xml index 4ce74e7f1..283af3a4e 100644 --- a/samples/springboot3-samples/pom.xml +++ b/samples/springboot3-samples/pom.xml @@ -20,8 +20,8 @@ 3.0.9 17 - 2.2.4-jdk17-SNAPSHOT - 0.5.2 + 3.0.0 + 0.5.3-jdk17 3.4.2 1.7.1 0.6.1 diff --git a/samples/springboot3-samples/web/tomcat/README.md b/samples/springboot3-samples/web/tomcat/README.md index ddf5df5e4..9b259f35a 100644 --- a/samples/springboot3-samples/web/tomcat/README.md +++ b/samples/springboot3-samples/web/tomcat/README.md @@ -29,19 +29,6 @@ base 为普通 springboot 改造成的基座,改造内容为在 pom 里增加 - - - com.alipay.sofa - log-sofa-boot-starter - 999-not-exist - - - - com.alipay.sofa - sofa-boot-alipay-autoconfigure - - - ``` diff --git a/samples/springboot3-samples/web/tomcat/base/pom.xml b/samples/springboot3-samples/web/tomcat/base/pom.xml index 8ad0a71a4..c1b20592e 100644 --- a/samples/springboot3-samples/web/tomcat/base/pom.xml +++ b/samples/springboot3-samples/web/tomcat/base/pom.xml @@ -53,18 +53,22 @@ - com.alipay.sofa log-sofa-boot-starter - 999-not-exist + 3.9.1 - - com.alipay.sofa - sofa-boot-alipay-autoconfigure + com.alipay.sofa.common + sofa-common-tools + + + com.alipay.sofa.common + sofa-common-tools + 2.0.3 + diff --git a/sofa-serverless-runtime/pom.xml b/sofa-serverless-runtime/pom.xml index 598c78b5e..addd51f46 100644 --- a/sofa-serverless-runtime/pom.xml +++ b/sofa-serverless-runtime/pom.xml @@ -40,7 +40,7 @@ 4.13.1 4.8.1 1.5.0 - 2.7.15 + 3.0.9 6.4.5 3.12.0 32.1.2-jre @@ -678,8 +678,8 @@ true - ${revision.default} - ${sofa.ark.version.jdk8} + ${revision.default}-jdk17 + ${sofa.ark.version.jdk17} diff --git a/sofa-serverless-runtime/sofa-serverless-adapter-ext/sofa-serverless-adapter-log4j2/src/main/java/com/alipay/sofa/serverless/log4j2/SOFAServerlessLog4j2LoggingSystem.java b/sofa-serverless-runtime/sofa-serverless-adapter-ext/sofa-serverless-adapter-log4j2/src/main/java/com/alipay/sofa/serverless/log4j2/SOFAServerlessLog4j2LoggingSystem.java index 510fe76d1..a7d7b94a9 100644 --- a/sofa-serverless-runtime/sofa-serverless-adapter-ext/sofa-serverless-adapter-log4j2/src/main/java/com/alipay/sofa/serverless/log4j2/SOFAServerlessLog4j2LoggingSystem.java +++ b/sofa-serverless-runtime/sofa-serverless-adapter-ext/sofa-serverless-adapter-log4j2/src/main/java/com/alipay/sofa/serverless/log4j2/SOFAServerlessLog4j2LoggingSystem.java @@ -31,7 +31,6 @@ import org.apache.logging.log4j.core.filter.AbstractFilter; import org.apache.logging.log4j.core.util.NameUtil; import org.apache.logging.log4j.message.Message; -import org.slf4j.bridge.SLF4JBridgeHandler; import org.springframework.boot.context.properties.bind.BindResult; import org.springframework.boot.context.properties.bind.Bindable; import org.springframework.boot.context.properties.bind.Binder; @@ -137,10 +136,7 @@ public void beforeInitialize() { private void configureJdkLoggingBridgeHandler() { try { - if (this.isBridgeJulIntoSlf4j()) { - this.removeJdkLoggingBridgeHandler(); - SLF4JBridgeHandler.install(); - } + this.removeJdkLoggingBridgeHandler(); } catch (Throwable var2) { } @@ -205,7 +201,6 @@ private List getOverrides(LoggingInitializationContext initializationCon return overrides.orElse(Collections.emptyList()); } - @Override protected void loadConfiguration(String location, LogFile logFile) { Assert.notNull(location, "Location must not be null"); try { @@ -324,9 +319,7 @@ private LoggerConfiguration convertLoggerConfig(String name, LoggerConfig logger @Override public void cleanUp() { try { - if (isBridgeHandlerAvailable()) { - removeJdkLoggingBridgeHandler(); - } + removeJdkLoggingBridgeHandler(); } catch (Exception e) { // Ignore and continue } @@ -338,7 +331,7 @@ public void cleanUp() { private void removeJdkLoggingBridgeHandler() { try { removeDefaultRootHandler(); - SLF4JBridgeHandler.uninstall(); + //SLF4JBridgeHandler.uninstall(); } catch (Throwable ex) { // Ignore and continue } From 74e8de2fb0328894609be060099ff100cf8bfd72 Mon Sep 17 00:00:00 2001 From: "chaya.cy" Date: Fri, 17 Nov 2023 16:04:41 +0800 Subject: [PATCH 02/18] remove log --- .../serverless/log4j2/SOFAServerlessLog4j2LoggingSystem.java | 1 - 1 file changed, 1 deletion(-) diff --git a/sofa-serverless-runtime/sofa-serverless-adapter-ext/sofa-serverless-adapter-log4j2/src/main/java/com/alipay/sofa/serverless/log4j2/SOFAServerlessLog4j2LoggingSystem.java b/sofa-serverless-runtime/sofa-serverless-adapter-ext/sofa-serverless-adapter-log4j2/src/main/java/com/alipay/sofa/serverless/log4j2/SOFAServerlessLog4j2LoggingSystem.java index a7d7b94a9..7c0a6f7ff 100644 --- a/sofa-serverless-runtime/sofa-serverless-adapter-ext/sofa-serverless-adapter-log4j2/src/main/java/com/alipay/sofa/serverless/log4j2/SOFAServerlessLog4j2LoggingSystem.java +++ b/sofa-serverless-runtime/sofa-serverless-adapter-ext/sofa-serverless-adapter-log4j2/src/main/java/com/alipay/sofa/serverless/log4j2/SOFAServerlessLog4j2LoggingSystem.java @@ -331,7 +331,6 @@ public void cleanUp() { private void removeJdkLoggingBridgeHandler() { try { removeDefaultRootHandler(); - //SLF4JBridgeHandler.uninstall(); } catch (Throwable ex) { // Ignore and continue } From 30bbd9852603b20088140e8247868345807153fd Mon Sep 17 00:00:00 2001 From: "chaya.cy" Date: Fri, 17 Nov 2023 18:16:22 +0800 Subject: [PATCH 03/18] add properties --- .../java/com/alipay/sofa/base/rest/SampleController.java | 3 ++- .../kafka/base/src/main/resources/application.properties | 6 +++--- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/samples/springboot3-samples/msg/kafka/base/src/main/java/com/alipay/sofa/base/rest/SampleController.java b/samples/springboot3-samples/msg/kafka/base/src/main/java/com/alipay/sofa/base/rest/SampleController.java index be6cf253c..d9153eaa7 100644 --- a/samples/springboot3-samples/msg/kafka/base/src/main/java/com/alipay/sofa/base/rest/SampleController.java +++ b/samples/springboot3-samples/msg/kafka/base/src/main/java/com/alipay/sofa/base/rest/SampleController.java @@ -1,6 +1,7 @@ package com.alipay.sofa.base.rest; import com.alipay.sofa.base.facade.SampleService; +import jakarta.annotation.Resource; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.beans.factory.annotation.Autowired; @@ -16,7 +17,7 @@ public class SampleController { private static Logger LOGGER = LoggerFactory.getLogger(SampleController.class); - @Autowired + @Resource private KafkaTemplate template; @Autowired diff --git a/samples/springboot3-samples/msg/kafka/base/src/main/resources/application.properties b/samples/springboot3-samples/msg/kafka/base/src/main/resources/application.properties index 531165fe5..e9b5fee01 100644 --- a/samples/springboot3-samples/msg/kafka/base/src/main/resources/application.properties +++ b/samples/springboot3-samples/msg/kafka/base/src/main/resources/application.properties @@ -1,9 +1,9 @@ spring.application.name=base logging.file.path=./msg/kafka/logs/ -logging.path=./msg/kafka/logs/ logging.level.com.alipay.sofa.web=DEBUG logging.level.root=INFO logging.level.com.alipay.sofa.arklet=INFO logging.config=classpath:log4j2-spring.xml - -spring.kafka.producer.bootstrap-servers=127.0.0.1:9092 \ No newline at end of file +spring.kafka.bootstrap-servers=127.0.0.1:9092 +spring.kafka.producer.bootstrap-servers=127.0.0.1:9092 +spring.kafka.consumer.bootstrap-servers=127.0.0.1:9092 \ No newline at end of file From 9c58b37ab18145e02906fa1167d6c14020b36432 Mon Sep 17 00:00:00 2001 From: "chaya.cy" Date: Fri, 17 Nov 2023 21:11:06 +0800 Subject: [PATCH 04/18] fix unit test --- .../arklet-springboot-starter/pom.xml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/sofa-serverless-runtime/arklet-springboot-starter/pom.xml b/sofa-serverless-runtime/arklet-springboot-starter/pom.xml index 5dffc006f..f66cab323 100644 --- a/sofa-serverless-runtime/arklet-springboot-starter/pom.xml +++ b/sofa-serverless-runtime/arklet-springboot-starter/pom.xml @@ -30,6 +30,23 @@ provided + + ch.qos.logback + logback-core + 1.3.5 + + + org.springframework.boot + spring-boot-starter-logging + test + + + ch.qos.logback + logback-classic + 1.3.5 + test + + org.springframework.boot spring-boot-starter-actuator From f412878048956413c21ea932884dfb692b2b6ac2 Mon Sep 17 00:00:00 2001 From: "chaya.cy" Date: Fri, 17 Nov 2023 21:25:09 +0800 Subject: [PATCH 05/18] fix unit test --- .github/workflows/arklet_unit_test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/arklet_unit_test.yml b/.github/workflows/arklet_unit_test.yml index ea8450863..8b9d65ddd 100644 --- a/.github/workflows/arklet_unit_test.yml +++ b/.github/workflows/arklet_unit_test.yml @@ -37,7 +37,7 @@ jobs: cache: maven - name: Test - run: mvn clean install -DskipTests -Dmaven.javadoc.skip=true -B -U + run: mvn clean install -DskipTests -P8-release -Dmaven.javadoc.skip=true -B -U && sh ./check_format.sh && mvn test From acdcca3cc01a63d3a1e70dfb2980076c9f8aa6e9 Mon Sep 17 00:00:00 2001 From: "chaya.cy" Date: Fri, 17 Nov 2023 22:03:25 +0800 Subject: [PATCH 06/18] fix unit test --- .github/workflows/arklet_unit_test.yml | 2 +- sofa-serverless-runtime/pom.xml | 8 +++++++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/workflows/arklet_unit_test.yml b/.github/workflows/arklet_unit_test.yml index 8b9d65ddd..24a216d61 100644 --- a/.github/workflows/arklet_unit_test.yml +++ b/.github/workflows/arklet_unit_test.yml @@ -56,7 +56,7 @@ jobs: cache: maven - name: Test - run: mvn clean install -DskipTests -Dmaven.javadoc.skip=true -B -U + run: mvn clean install -DskipTests -P17-release -Dmaven.javadoc.skip=true -B -U && sh ./check_format.sh && mvn test diff --git a/sofa-serverless-runtime/pom.xml b/sofa-serverless-runtime/pom.xml index addd51f46..76d5474d8 100644 --- a/sofa-serverless-runtime/pom.xml +++ b/sofa-serverless-runtime/pom.xml @@ -15,6 +15,8 @@ 3. 开始打包,将所有打出的包都上传--> 3.0.0 2.2.4 + 2.7.15 + 3.0.9 0.5.3 UTF-8 UTF-8 @@ -40,7 +42,6 @@ 4.13.1 4.8.1 1.5.0 - 3.0.9 6.4.5 3.12.0 32.1.2-jre @@ -489,6 +490,7 @@ ${revision.default}-jdk17-SNAPSHOT ${sofa.ark.version.jdk17} + ${spring.boot.version.jdk17} - 3.0.0 + 3.0.1 2.2.4 2.7.15 3.0.9 From 261f951d05fb8da6b4d0ab3b4ec9ecf46c88e87a Mon Sep 17 00:00:00 2001 From: "chaya.cy" Date: Sat, 18 Nov 2023 17:44:46 +0800 Subject: [PATCH 16/18] remove sofa-ark-springboot starter --- samples/springboot3-samples/pom.xml | 5 ----- 1 file changed, 5 deletions(-) diff --git a/samples/springboot3-samples/pom.xml b/samples/springboot3-samples/pom.xml index 076bab4e3..7cf8e898e 100644 --- a/samples/springboot3-samples/pom.xml +++ b/samples/springboot3-samples/pom.xml @@ -77,11 +77,6 @@ sofa-ark-all ${sofa.ark.version} - - com.alipay.sofa - sofa-ark-springboot-starter - ${sofa.ark.version} - com.alipay.sofa web-ark-plugin From 6affc10e1ace40836dd6ddfc0627ead6921a6dfa Mon Sep 17 00:00:00 2001 From: "chaya.cy" Date: Sat, 18 Nov 2023 18:57:22 +0800 Subject: [PATCH 17/18] jdk17 latest test --- .../springboot3-samples/db/mybatis/README.md | 2 +- .../db/mybatis/base/pom.xml | 2 +- samples/springboot3-samples/logging/README.md | 2 +- .../logging/log4j2/base/pom.xml | 2 +- .../logging/log4j2/base/tree.txt | 172 ++++++++++++++++++ .../springboot3-samples/msg/kafka/README.md | 2 +- .../msg/kafka/base/pom.xml | 2 +- .../msg/kafka/base/tree.txt | 170 +++++++++++++++++ samples/springboot3-samples/pom.xml | 2 +- .../springboot3-samples/web/tomcat/README.md | 2 +- .../web/tomcat/base/pom.xml | 2 +- 11 files changed, 351 insertions(+), 9 deletions(-) create mode 100644 samples/springboot3-samples/logging/log4j2/base/tree.txt create mode 100644 samples/springboot3-samples/msg/kafka/base/tree.txt diff --git a/samples/springboot3-samples/db/mybatis/README.md b/samples/springboot3-samples/db/mybatis/README.md index 2ac87ca86..f33919085 100644 --- a/samples/springboot3-samples/db/mybatis/README.md +++ b/samples/springboot3-samples/db/mybatis/README.md @@ -11,7 +11,7 @@ base 为普通 springboot 改造成的基座,改造内容为在 pom 里增加 com.alipay.sofa.serverless sofa-serverless-base-starter - 0.5.3-jdk17 + 0.5.3-jdk17-SNAPSHOT diff --git a/samples/springboot3-samples/db/mybatis/base/pom.xml b/samples/springboot3-samples/db/mybatis/base/pom.xml index e130e7ddf..e6206993e 100644 --- a/samples/springboot3-samples/db/mybatis/base/pom.xml +++ b/samples/springboot3-samples/db/mybatis/base/pom.xml @@ -68,7 +68,7 @@ com.alipay.sofa.serverless sofa-serverless-base-starter - 0.5.3-jdk17 + 0.5.3-jdk17-SNAPSHOT diff --git a/samples/springboot3-samples/logging/README.md b/samples/springboot3-samples/logging/README.md index bf678e66b..6618980c4 100644 --- a/samples/springboot3-samples/logging/README.md +++ b/samples/springboot3-samples/logging/README.md @@ -13,7 +13,7 @@ base 为普通 springboot 改造成的基座,改造内容为在 pom 里增加 com.alipay.sofa.serverless sofa-serverless-base-starter - 0.5.3-jdk17 + 0.5.3-jdk17-SNAPSHOT diff --git a/samples/springboot3-samples/logging/log4j2/base/pom.xml b/samples/springboot3-samples/logging/log4j2/base/pom.xml index 8580f5be2..c3fab1624 100644 --- a/samples/springboot3-samples/logging/log4j2/base/pom.xml +++ b/samples/springboot3-samples/logging/log4j2/base/pom.xml @@ -31,7 +31,7 @@ com.alipay.sofa.serverless sofa-serverless-base-starter - 0.5.3-jdk17 + 0.5.3-jdk17-SNAPSHOT diff --git a/samples/springboot3-samples/logging/log4j2/base/tree.txt b/samples/springboot3-samples/logging/log4j2/base/tree.txt new file mode 100644 index 000000000..32c7fc426 --- /dev/null +++ b/samples/springboot3-samples/logging/log4j2/base/tree.txt @@ -0,0 +1,172 @@ +[INFO] Scanning for projects... +[INFO] +[INFO] -------------< com.alipay.sofa.logging.log4j2:base-log4j2 >------------- +[INFO] Building base-log4j2 0.0.1-SNAPSHOT +[INFO] --------------------------------[ jar ]--------------------------------- +Downloading from mirror-all: https://maven.aliyun.com/repository/public/com/alipay/sofa/sofa-ark-springboot-starter/3.0.0/sofa-ark-springboot-starter-3.0.0.pom +Progress (1): 3.6/4.7 kB Progress (1): 4.7 kB Downloaded from mirror-all: https://maven.aliyun.com/repository/public/com/alipay/sofa/sofa-ark-springboot-starter/3.0.0/sofa-ark-springboot-starter-3.0.0.pom (4.7 kB at 5.6 kB/s) +Downloading from mirror-all: https://maven.aliyun.com/repository/public/com/alipay/sofa/sofa-ark-support-starter/3.0.0/sofa-ark-support-starter-3.0.0.pom +Progress (1): 2.6 kB Downloaded from mirror-all: https://maven.aliyun.com/repository/public/com/alipay/sofa/sofa-ark-support-starter/3.0.0/sofa-ark-support-starter-3.0.0.pom (2.6 kB at 7.4 kB/s) +Downloading from mirror-all: https://maven.aliyun.com/repository/public/com/alipay/sofa/sofa-ark-compatible-springboot1/3.0.0/sofa-ark-compatible-springboot1-3.0.0.pom +Progress (1): 2.2 kB Downloaded from mirror-all: https://maven.aliyun.com/repository/public/com/alipay/sofa/sofa-ark-compatible-springboot1/3.0.0/sofa-ark-compatible-springboot1-3.0.0.pom (2.2 kB at 8.3 kB/s) +Downloading from mirror-all: https://maven.aliyun.com/repository/public/com/alipay/sofa/sofa-ark-common-springboot/3.0.0/sofa-ark-common-springboot-3.0.0.pom +Progress (1): 1.4 kB Downloaded from mirror-all: https://maven.aliyun.com/repository/public/com/alipay/sofa/sofa-ark-common-springboot/3.0.0/sofa-ark-common-springboot-3.0.0.pom (1.4 kB at 4.1 kB/s) +Downloading from mirror-all: https://maven.aliyun.com/repository/public/com/alipay/sofa/sofa-ark-compatible-springboot2/3.0.0/sofa-ark-compatible-springboot2-3.0.0.pom +Progress (1): 3.2 kB Downloaded from mirror-all: https://maven.aliyun.com/repository/public/com/alipay/sofa/sofa-ark-compatible-springboot2/3.0.0/sofa-ark-compatible-springboot2-3.0.0.pom (3.2 kB at 12 kB/s) +[INFO] +[INFO] --- maven-dependency-plugin:3.3.0:tree (default-cli) @ base-log4j2 --- +[INFO] com.alipay.sofa.logging.log4j2:base-log4j2:jar:0.0.1-SNAPSHOT +[INFO] +- org.springframework.boot:spring-boot-starter-web:jar:3.0.9:compile +[INFO] | +- org.springframework.boot:spring-boot-starter:jar:3.0.9:compile +[INFO] | | +- org.springframework.boot:spring-boot:jar:3.0.9:compile +[INFO] | | +- org.springframework.boot:spring-boot-autoconfigure:jar:3.0.9:compile +[INFO] | | +- jakarta.annotation:jakarta.annotation-api:jar:2.1.1:compile +[INFO] | | \- org.yaml:snakeyaml:jar:1.33:compile +[INFO] | +- org.springframework.boot:spring-boot-starter-json:jar:3.0.9:compile +[INFO] | | +- com.fasterxml.jackson.core:jackson-databind:jar:2.14.3:compile +[INFO] | | | +- com.fasterxml.jackson.core:jackson-annotations:jar:2.14.3:compile +[INFO] | | | \- com.fasterxml.jackson.core:jackson-core:jar:2.14.3:compile +[INFO] | | +- com.fasterxml.jackson.datatype:jackson-datatype-jdk8:jar:2.14.3:compile +[INFO] | | +- com.fasterxml.jackson.datatype:jackson-datatype-jsr310:jar:2.14.3:compile +[INFO] | | \- com.fasterxml.jackson.module:jackson-module-parameter-names:jar:2.14.3:compile +[INFO] | +- org.springframework.boot:spring-boot-starter-tomcat:jar:3.0.9:compile +[INFO] | | +- org.apache.tomcat.embed:tomcat-embed-core:jar:10.1.11:compile +[INFO] | | +- org.apache.tomcat.embed:tomcat-embed-el:jar:10.1.11:compile +[INFO] | | \- org.apache.tomcat.embed:tomcat-embed-websocket:jar:10.1.11:compile +[INFO] | +- org.springframework:spring-web:jar:6.0.11:compile +[INFO] | | +- org.springframework:spring-beans:jar:6.0.11:compile +[INFO] | | \- io.micrometer:micrometer-observation:jar:1.10.9:compile +[INFO] | | \- io.micrometer:micrometer-commons:jar:1.10.9:compile +[INFO] | \- org.springframework:spring-webmvc:jar:6.0.11:compile +[INFO] | +- org.springframework:spring-aop:jar:6.0.11:compile +[INFO] | +- org.springframework:spring-context:jar:6.0.11:compile +[INFO] | \- org.springframework:spring-expression:jar:6.0.11:compile +[INFO] +- org.springframework.boot:spring-boot-starter-test:jar:3.0.9:test +[INFO] | +- org.springframework.boot:spring-boot-test:jar:3.0.9:test +[INFO] | +- org.springframework.boot:spring-boot-test-autoconfigure:jar:3.0.9:test +[INFO] | +- com.jayway.jsonpath:json-path:jar:2.7.0:test +[INFO] | | \- net.minidev:json-smart:jar:2.4.11:test +[INFO] | | \- net.minidev:accessors-smart:jar:2.4.11:test +[INFO] | | \- org.ow2.asm:asm:jar:9.3:test +[INFO] | +- jakarta.xml.bind:jakarta.xml.bind-api:jar:4.0.0:test +[INFO] | | \- jakarta.activation:jakarta.activation-api:jar:2.1.2:test +[INFO] | +- org.assertj:assertj-core:jar:3.23.1:test +[INFO] | | \- net.bytebuddy:byte-buddy:jar:1.12.23:test +[INFO] | +- org.hamcrest:hamcrest:jar:2.2:test +[INFO] | +- org.junit.jupiter:junit-jupiter:jar:5.9.3:test +[INFO] | | +- org.junit.jupiter:junit-jupiter-api:jar:5.9.3:test +[INFO] | | | +- org.opentest4j:opentest4j:jar:1.2.0:test +[INFO] | | | +- org.junit.platform:junit-platform-commons:jar:1.9.3:test +[INFO] | | | \- org.apiguardian:apiguardian-api:jar:1.1.2:test +[INFO] | | +- org.junit.jupiter:junit-jupiter-params:jar:5.9.3:test +[INFO] | | \- org.junit.jupiter:junit-jupiter-engine:jar:5.9.3:test +[INFO] | | \- org.junit.platform:junit-platform-engine:jar:1.9.3:test +[INFO] | +- org.mockito:mockito-core:jar:4.8.1:test +[INFO] | | +- net.bytebuddy:byte-buddy-agent:jar:1.12.23:compile +[INFO] | | \- org.objenesis:objenesis:jar:3.2:test +[INFO] | +- org.mockito:mockito-junit-jupiter:jar:4.8.1:test +[INFO] | +- org.skyscreamer:jsonassert:jar:1.5.1:test +[INFO] | | \- com.vaadin.external.google:android-json:jar:0.0.20131108.vaadin1:test +[INFO] | +- org.springframework:spring-core:jar:6.0.11:compile +[INFO] | | \- org.springframework:spring-jcl:jar:6.0.11:compile +[INFO] | +- org.springframework:spring-test:jar:6.0.11:test +[INFO] | \- org.xmlunit:xmlunit-core:jar:2.9.1:test +[INFO] +- com.alipay.sofa.serverless:sofa-serverless-base-starter:jar:0.5.3-jdk17:compile +[INFO] | +- com.alipay.sofa:sofa-ark-all:jar:3.0.0:compile +[INFO] | | +- com.alipay.sofa:sofa-ark-exception:jar:3.0.0:compile +[INFO] | | +- com.alipay.sofa:sofa-ark-spi:jar:3.0.0:compile +[INFO] | | +- com.alipay.sofa:sofa-ark-archive:jar:3.0.0:compile +[INFO] | | | \- org.apache.maven:maven-model:jar:3.8.1:compile +[INFO] | | | \- org.codehaus.plexus:plexus-utils:jar:3.2.1:compile +[INFO] | | \- com.alipay.sofa:sofa-ark-container:jar:3.0.0:compile +[INFO] | | +- com.google.inject.extensions:guice-multibindings:jar:4.2.3:compile +[INFO] | | +- io.netty:netty-all:jar:4.1.94.Final:compile +[INFO] | | | +- io.netty:netty-buffer:jar:4.1.94.Final:compile +[INFO] | | | +- io.netty:netty-codec:jar:4.1.94.Final:compile +[INFO] | | | +- io.netty:netty-codec-dns:jar:4.1.94.Final:compile +[INFO] | | | +- io.netty:netty-codec-haproxy:jar:4.1.94.Final:compile +[INFO] | | | +- io.netty:netty-codec-http:jar:4.1.94.Final:compile +[INFO] | | | +- io.netty:netty-codec-http2:jar:4.1.94.Final:compile +[INFO] | | | +- io.netty:netty-codec-memcache:jar:4.1.94.Final:compile +[INFO] | | | +- io.netty:netty-codec-mqtt:jar:4.1.94.Final:compile +[INFO] | | | +- io.netty:netty-codec-redis:jar:4.1.94.Final:compile +[INFO] | | | +- io.netty:netty-codec-smtp:jar:4.1.94.Final:compile +[INFO] | | | +- io.netty:netty-codec-socks:jar:4.1.94.Final:compile +[INFO] | | | +- io.netty:netty-codec-stomp:jar:4.1.94.Final:compile +[INFO] | | | +- io.netty:netty-codec-xml:jar:4.1.94.Final:compile +[INFO] | | | +- io.netty:netty-common:jar:4.1.94.Final:compile +[INFO] | | | +- io.netty:netty-handler:jar:4.1.94.Final:compile +[INFO] | | | +- io.netty:netty-transport-native-unix-common:jar:4.1.94.Final:compile +[INFO] | | | +- io.netty:netty-handler-proxy:jar:4.1.94.Final:compile +[INFO] | | | +- io.netty:netty-handler-ssl-ocsp:jar:4.1.94.Final:compile +[INFO] | | | +- io.netty:netty-resolver:jar:4.1.94.Final:compile +[INFO] | | | +- io.netty:netty-resolver-dns:jar:4.1.94.Final:compile +[INFO] | | | +- io.netty:netty-transport:jar:4.1.94.Final:compile +[INFO] | | | +- io.netty:netty-transport-rxtx:jar:4.1.94.Final:compile +[INFO] | | | +- io.netty:netty-transport-sctp:jar:4.1.94.Final:compile +[INFO] | | | +- io.netty:netty-transport-udt:jar:4.1.94.Final:compile +[INFO] | | | +- io.netty:netty-transport-classes-epoll:jar:4.1.94.Final:compile +[INFO] | | | +- io.netty:netty-transport-classes-kqueue:jar:4.1.94.Final:compile +[INFO] | | | +- io.netty:netty-resolver-dns-classes-macos:jar:4.1.94.Final:compile +[INFO] | | | +- io.netty:netty-transport-native-epoll:jar:linux-x86_64:4.1.94.Final:runtime +[INFO] | | | +- io.netty:netty-transport-native-epoll:jar:linux-aarch_64:4.1.94.Final:runtime +[INFO] | | | +- io.netty:netty-transport-native-kqueue:jar:osx-x86_64:4.1.94.Final:runtime +[INFO] | | | +- io.netty:netty-transport-native-kqueue:jar:osx-aarch_64:4.1.94.Final:runtime +[INFO] | | | +- io.netty:netty-resolver-dns-native-macos:jar:osx-x86_64:4.1.94.Final:runtime +[INFO] | | | \- io.netty:netty-resolver-dns-native-macos:jar:osx-aarch_64:4.1.94.Final:runtime +[INFO] | | \- com.taobao.text:text-ui:jar:0.0.3:compile +[INFO] | +- com.alipay.sofa:sofa-ark-springboot-starter:jar:3.0.0:compile +[INFO] | | +- com.alipay.sofa:sofa-ark-support-starter:jar:3.0.0:compile +[INFO] | | +- com.alipay.sofa:sofa-ark-api:jar:3.0.0:compile +[INFO] | | +- com.alipay.sofa:sofa-ark-compatible-springboot1:jar:3.0.0:compile +[INFO] | | | \- com.alipay.sofa:sofa-ark-common-springboot:jar:3.0.0:compile +[INFO] | | +- com.alipay.sofa:sofa-ark-compatible-springboot2:jar:3.0.0:compile +[INFO] | | \- org.springframework.boot:spring-boot-loader:jar:3.0.9:compile +[INFO] | +- com.alipay.sofa.serverless:arklet-springboot-starter:jar:0.5.3:compile +[INFO] | | +- com.alipay.sofa.serverless:arklet-core:jar:0.5.3:compile +[INFO] | | | +- com.github.oshi:oshi-core:jar:6.4.5:compile +[INFO] | | | | +- net.java.dev.jna:jna:jar:5.13.0:compile +[INFO] | | | | \- net.java.dev.jna:jna-platform:jar:5.13.0:compile +[INFO] | | | +- com.alibaba:fastjson:jar:1.2.83:compile +[INFO] | | | +- org.projectlombok:lombok:jar:1.18.28:compile +[INFO] | | | \- org.apache.commons:commons-lang3:jar:3.12.0:compile +[INFO] | | \- org.springframework.boot:spring-boot-starter-actuator:jar:3.0.9:compile +[INFO] | | +- org.springframework.boot:spring-boot-actuator-autoconfigure:jar:3.0.9:compile +[INFO] | | | \- org.springframework.boot:spring-boot-actuator:jar:3.0.9:compile +[INFO] | | \- io.micrometer:micrometer-core:jar:1.10.9:compile +[INFO] | | +- org.hdrhistogram:HdrHistogram:jar:2.1.12:runtime +[INFO] | | \- org.latencyutils:LatencyUtils:jar:2.0.3:runtime +[INFO] | \- com.alipay.sofa.serverless:sofa-serverless-base-plugin:jar:0.5.3:compile +[INFO] | \- com.alipay.sofa.serverless:sofa-serverless-common:jar:0.5.3:compile +[INFO] | \- com.alipay.sofa:hessian:jar:3.5.1:compile +[INFO] +- org.springframework.boot:spring-boot-starter-log4j2:jar:3.0.9:compile +[INFO] | +- org.apache.logging.log4j:log4j-slf4j2-impl:jar:2.19.0:compile +[INFO] | | \- org.apache.logging.log4j:log4j-api:jar:2.19.0:compile +[INFO] | +- org.apache.logging.log4j:log4j-core:jar:2.19.0:compile +[INFO] | \- org.apache.logging.log4j:log4j-jul:jar:2.19.0:compile +[INFO] +- com.alipay.sofa:web-ark-plugin:jar:3.0.0:compile +[INFO] | \- com.alipay.sofa:sofa-ark-common:jar:3.0.0:compile +[INFO] | +- com.google.inject:guice:jar:5.1.0:compile +[INFO] | | +- javax.inject:javax.inject:jar:1:compile +[INFO] | | \- aopalliance:aopalliance:jar:1.0:compile +[INFO] | \- commons-io:commons-io:jar:2.7:compile +[INFO] +- com.alipay.sofa:log-sofa-boot-starter:jar:3.9.1:compile +[INFO] | \- com.alipay.sofa:log-sofa-boot:jar:3.9.1:compile +[INFO] +- com.alipay.sofa.common:sofa-common-tools:jar:2.0.3:compile +[INFO] | +- com.google.guava:guava:jar:27.0-jre:compile +[INFO] | | +- com.google.guava:failureaccess:jar:1.0:compile +[INFO] | | +- com.google.guava:listenablefuture:jar:9999.0-empty-to-avoid-conflict-with-guava:compile +[INFO] | | +- com.google.code.findbugs:jsr305:jar:3.0.2:compile +[INFO] | | +- org.checkerframework:checker-qual:jar:2.5.2:compile +[INFO] | | +- com.google.errorprone:error_prone_annotations:jar:2.2.0:compile +[INFO] | | +- com.google.j2objc:j2objc-annotations:jar:1.1:compile +[INFO] | | \- org.codehaus.mojo:animal-sniffer-annotations:jar:1.17:compile +[INFO] | \- org.slf4j:slf4j-api:jar:2.0.7:compile +[INFO] +- com.lmax:disruptor:jar:3.4.2:compile +[INFO] \- com.alipay.sofa.serverless:sofa-serverless-adapter-log4j2:jar:0.5.3-jdk17:compile +[INFO] ------------------------------------------------------------------------ +[INFO] BUILD SUCCESS +[INFO] ------------------------------------------------------------------------ +[INFO] Total time: 4.480 s +[INFO] Finished at: 2023-11-18T13:10:12+08:00 +[INFO] ------------------------------------------------------------------------ diff --git a/samples/springboot3-samples/msg/kafka/README.md b/samples/springboot3-samples/msg/kafka/README.md index 59fda42c1..d1e400613 100644 --- a/samples/springboot3-samples/msg/kafka/README.md +++ b/samples/springboot3-samples/msg/kafka/README.md @@ -11,7 +11,7 @@ base 为普通 springboot 改造成的基座,改造内容为在 pom 里增加 com.alipay.sofa.serverless sofa-serverless-base-starter - 0.5.3-jdk17 + 0.5.3-jdk17-SNAPSHOT diff --git a/samples/springboot3-samples/msg/kafka/base/pom.xml b/samples/springboot3-samples/msg/kafka/base/pom.xml index 6fe830e0e..64082a6de 100644 --- a/samples/springboot3-samples/msg/kafka/base/pom.xml +++ b/samples/springboot3-samples/msg/kafka/base/pom.xml @@ -47,7 +47,7 @@ com.alipay.sofa.serverless sofa-serverless-base-starter - 0.5.3-jdk17 + 0.5.3-jdk17-SNAPSHOT diff --git a/samples/springboot3-samples/msg/kafka/base/tree.txt b/samples/springboot3-samples/msg/kafka/base/tree.txt new file mode 100644 index 000000000..543850659 --- /dev/null +++ b/samples/springboot3-samples/msg/kafka/base/tree.txt @@ -0,0 +1,170 @@ +[INFO] Scanning for projects... +[INFO] +[INFO] ----------------< com.alipay.sofa.msg.kafka:base-kafka >---------------- +[INFO] Building base-kafka 0.0.1-SNAPSHOT +[INFO] --------------------------------[ jar ]--------------------------------- +[INFO] +[INFO] --- maven-dependency-plugin:3.3.0:tree (default-cli) @ base-kafka --- +[INFO] com.alipay.sofa.msg.kafka:base-kafka:jar:0.0.1-SNAPSHOT +[INFO] +- org.springframework.boot:spring-boot-starter-web:jar:3.0.9:compile +[INFO] | +- org.springframework.boot:spring-boot-starter:jar:3.0.9:compile +[INFO] | | +- org.springframework.boot:spring-boot:jar:3.0.9:compile +[INFO] | | +- org.springframework.boot:spring-boot-autoconfigure:jar:3.0.9:compile +[INFO] | | +- jakarta.annotation:jakarta.annotation-api:jar:2.1.1:compile +[INFO] | | \- org.yaml:snakeyaml:jar:1.33:compile +[INFO] | +- org.springframework.boot:spring-boot-starter-json:jar:3.0.9:compile +[INFO] | | +- com.fasterxml.jackson.core:jackson-databind:jar:2.14.3:compile +[INFO] | | | +- com.fasterxml.jackson.core:jackson-annotations:jar:2.14.3:compile +[INFO] | | | \- com.fasterxml.jackson.core:jackson-core:jar:2.14.3:compile +[INFO] | | +- com.fasterxml.jackson.datatype:jackson-datatype-jdk8:jar:2.14.3:compile +[INFO] | | +- com.fasterxml.jackson.datatype:jackson-datatype-jsr310:jar:2.14.3:compile +[INFO] | | \- com.fasterxml.jackson.module:jackson-module-parameter-names:jar:2.14.3:compile +[INFO] | +- org.springframework.boot:spring-boot-starter-tomcat:jar:3.0.9:compile +[INFO] | | +- org.apache.tomcat.embed:tomcat-embed-core:jar:10.1.11:compile +[INFO] | | +- org.apache.tomcat.embed:tomcat-embed-el:jar:10.1.11:compile +[INFO] | | \- org.apache.tomcat.embed:tomcat-embed-websocket:jar:10.1.11:compile +[INFO] | +- org.springframework:spring-web:jar:6.0.11:compile +[INFO] | | \- org.springframework:spring-beans:jar:6.0.11:compile +[INFO] | \- org.springframework:spring-webmvc:jar:6.0.11:compile +[INFO] | +- org.springframework:spring-aop:jar:6.0.11:compile +[INFO] | \- org.springframework:spring-expression:jar:6.0.11:compile +[INFO] +- org.springframework.boot:spring-boot-starter-test:jar:3.0.9:test +[INFO] | +- org.springframework.boot:spring-boot-test:jar:3.0.9:test +[INFO] | +- org.springframework.boot:spring-boot-test-autoconfigure:jar:3.0.9:test +[INFO] | +- com.jayway.jsonpath:json-path:jar:2.7.0:test +[INFO] | | \- net.minidev:json-smart:jar:2.4.11:test +[INFO] | | \- net.minidev:accessors-smart:jar:2.4.11:test +[INFO] | | \- org.ow2.asm:asm:jar:9.3:test +[INFO] | +- jakarta.xml.bind:jakarta.xml.bind-api:jar:4.0.0:test +[INFO] | | \- jakarta.activation:jakarta.activation-api:jar:2.1.2:test +[INFO] | +- org.assertj:assertj-core:jar:3.23.1:test +[INFO] | | \- net.bytebuddy:byte-buddy:jar:1.12.23:test +[INFO] | +- org.hamcrest:hamcrest:jar:2.2:test +[INFO] | +- org.junit.jupiter:junit-jupiter:jar:5.9.3:test +[INFO] | | +- org.junit.jupiter:junit-jupiter-api:jar:5.9.3:test +[INFO] | | | +- org.opentest4j:opentest4j:jar:1.2.0:test +[INFO] | | | +- org.junit.platform:junit-platform-commons:jar:1.9.3:test +[INFO] | | | \- org.apiguardian:apiguardian-api:jar:1.1.2:test +[INFO] | | +- org.junit.jupiter:junit-jupiter-params:jar:5.9.3:test +[INFO] | | \- org.junit.jupiter:junit-jupiter-engine:jar:5.9.3:test +[INFO] | | \- org.junit.platform:junit-platform-engine:jar:1.9.3:test +[INFO] | +- org.mockito:mockito-core:jar:4.8.1:test +[INFO] | | +- net.bytebuddy:byte-buddy-agent:jar:1.12.23:compile +[INFO] | | \- org.objenesis:objenesis:jar:3.2:test +[INFO] | +- org.mockito:mockito-junit-jupiter:jar:4.8.1:test +[INFO] | +- org.skyscreamer:jsonassert:jar:1.5.1:test +[INFO] | | \- com.vaadin.external.google:android-json:jar:0.0.20131108.vaadin1:test +[INFO] | +- org.springframework:spring-core:jar:6.0.11:compile +[INFO] | | \- org.springframework:spring-jcl:jar:6.0.11:compile +[INFO] | +- org.springframework:spring-test:jar:6.0.11:test +[INFO] | \- org.xmlunit:xmlunit-core:jar:2.9.1:test +[INFO] +- org.springframework.boot:spring-boot-starter-log4j2:jar:3.0.9:compile +[INFO] | +- org.apache.logging.log4j:log4j-slf4j2-impl:jar:2.19.0:compile +[INFO] | | \- org.apache.logging.log4j:log4j-api:jar:2.19.0:compile +[INFO] | +- org.apache.logging.log4j:log4j-core:jar:2.19.0:compile +[INFO] | \- org.apache.logging.log4j:log4j-jul:jar:2.19.0:compile +[INFO] +- org.springframework.kafka:spring-kafka:jar:3.0.9:compile +[INFO] | +- org.springframework:spring-context:jar:6.0.11:compile +[INFO] | +- org.springframework:spring-messaging:jar:6.0.11:compile +[INFO] | +- org.springframework:spring-tx:jar:6.0.11:compile +[INFO] | +- org.springframework.retry:spring-retry:jar:2.0.2:compile +[INFO] | +- org.apache.kafka:kafka-clients:jar:3.3.2:compile +[INFO] | | +- com.github.luben:zstd-jni:jar:1.5.2-1:runtime +[INFO] | | +- org.lz4:lz4-java:jar:1.8.0:runtime +[INFO] | | \- org.xerial.snappy:snappy-java:jar:1.1.8.4:runtime +[INFO] | +- io.micrometer:micrometer-observation:jar:1.10.9:compile +[INFO] | | \- io.micrometer:micrometer-commons:jar:1.10.9:compile +[INFO] | \- com.google.code.findbugs:jsr305:jar:3.0.2:compile +[INFO] +- com.lmax:disruptor:jar:3.4.2:compile +[INFO] +- com.alipay.sofa.serverless:sofa-serverless-base-starter:jar:0.5.3-jdk17:compile +[INFO] | +- com.alipay.sofa:sofa-ark-all:jar:3.0.1:compile +[INFO] | | +- com.alipay.sofa:sofa-ark-exception:jar:3.0.1:compile +[INFO] | | +- com.alipay.sofa:sofa-ark-spi:jar:3.0.1:compile +[INFO] | | +- com.alipay.sofa:sofa-ark-archive:jar:3.0.1:compile +[INFO] | | | \- org.apache.maven:maven-model:jar:3.8.1:compile +[INFO] | | | \- org.codehaus.plexus:plexus-utils:jar:3.2.1:compile +[INFO] | | \- com.alipay.sofa:sofa-ark-container:jar:3.0.1:compile +[INFO] | | +- com.google.inject.extensions:guice-multibindings:jar:4.2.3:compile +[INFO] | | +- io.netty:netty-all:jar:4.1.94.Final:compile +[INFO] | | | +- io.netty:netty-buffer:jar:4.1.94.Final:compile +[INFO] | | | +- io.netty:netty-codec:jar:4.1.94.Final:compile +[INFO] | | | +- io.netty:netty-codec-dns:jar:4.1.94.Final:compile +[INFO] | | | +- io.netty:netty-codec-haproxy:jar:4.1.94.Final:compile +[INFO] | | | +- io.netty:netty-codec-http:jar:4.1.94.Final:compile +[INFO] | | | +- io.netty:netty-codec-http2:jar:4.1.94.Final:compile +[INFO] | | | +- io.netty:netty-codec-memcache:jar:4.1.94.Final:compile +[INFO] | | | +- io.netty:netty-codec-mqtt:jar:4.1.94.Final:compile +[INFO] | | | +- io.netty:netty-codec-redis:jar:4.1.94.Final:compile +[INFO] | | | +- io.netty:netty-codec-smtp:jar:4.1.94.Final:compile +[INFO] | | | +- io.netty:netty-codec-socks:jar:4.1.94.Final:compile +[INFO] | | | +- io.netty:netty-codec-stomp:jar:4.1.94.Final:compile +[INFO] | | | +- io.netty:netty-codec-xml:jar:4.1.94.Final:compile +[INFO] | | | +- io.netty:netty-common:jar:4.1.94.Final:compile +[INFO] | | | +- io.netty:netty-handler:jar:4.1.94.Final:compile +[INFO] | | | +- io.netty:netty-transport-native-unix-common:jar:4.1.94.Final:compile +[INFO] | | | +- io.netty:netty-handler-proxy:jar:4.1.94.Final:compile +[INFO] | | | +- io.netty:netty-handler-ssl-ocsp:jar:4.1.94.Final:compile +[INFO] | | | +- io.netty:netty-resolver:jar:4.1.94.Final:compile +[INFO] | | | +- io.netty:netty-resolver-dns:jar:4.1.94.Final:compile +[INFO] | | | +- io.netty:netty-transport:jar:4.1.94.Final:compile +[INFO] | | | +- io.netty:netty-transport-rxtx:jar:4.1.94.Final:compile +[INFO] | | | +- io.netty:netty-transport-sctp:jar:4.1.94.Final:compile +[INFO] | | | +- io.netty:netty-transport-udt:jar:4.1.94.Final:compile +[INFO] | | | +- io.netty:netty-transport-classes-epoll:jar:4.1.94.Final:compile +[INFO] | | | +- io.netty:netty-transport-classes-kqueue:jar:4.1.94.Final:compile +[INFO] | | | +- io.netty:netty-resolver-dns-classes-macos:jar:4.1.94.Final:compile +[INFO] | | | +- io.netty:netty-transport-native-epoll:jar:linux-x86_64:4.1.94.Final:runtime +[INFO] | | | +- io.netty:netty-transport-native-epoll:jar:linux-aarch_64:4.1.94.Final:runtime +[INFO] | | | +- io.netty:netty-transport-native-kqueue:jar:osx-x86_64:4.1.94.Final:runtime +[INFO] | | | +- io.netty:netty-transport-native-kqueue:jar:osx-aarch_64:4.1.94.Final:runtime +[INFO] | | | +- io.netty:netty-resolver-dns-native-macos:jar:osx-x86_64:4.1.94.Final:runtime +[INFO] | | | \- io.netty:netty-resolver-dns-native-macos:jar:osx-aarch_64:4.1.94.Final:runtime +[INFO] | | \- com.taobao.text:text-ui:jar:0.0.3:compile +[INFO] | +- com.alipay.sofa:sofa-ark-springboot-starter:jar:3.0.1:compile +[INFO] | | +- com.alipay.sofa:sofa-ark-support-starter:jar:3.0.1:compile +[INFO] | | +- com.alipay.sofa:sofa-ark-api:jar:3.0.1:compile +[INFO] | | +- com.alipay.sofa:sofa-ark-compatible-springboot1:jar:3.0.1:compile +[INFO] | | | \- com.alipay.sofa:sofa-ark-common-springboot:jar:3.0.1:compile +[INFO] | | +- com.alipay.sofa:sofa-ark-compatible-springboot2:jar:3.0.1:compile +[INFO] | | \- org.springframework.boot:spring-boot-loader:jar:3.0.9:compile +[INFO] | +- com.alipay.sofa.serverless:arklet-springboot-starter:jar:0.5.3:compile +[INFO] | | +- com.alipay.sofa.serverless:arklet-core:jar:0.5.3:compile +[INFO] | | | +- com.github.oshi:oshi-core:jar:6.4.5:compile +[INFO] | | | | +- net.java.dev.jna:jna:jar:5.13.0:compile +[INFO] | | | | \- net.java.dev.jna:jna-platform:jar:5.13.0:compile +[INFO] | | | +- com.alibaba:fastjson:jar:1.2.83:compile +[INFO] | | | +- org.projectlombok:lombok:jar:1.18.28:compile +[INFO] | | | \- org.apache.commons:commons-lang3:jar:3.12.0:compile +[INFO] | | \- org.springframework.boot:spring-boot-starter-actuator:jar:3.0.9:compile +[INFO] | | +- org.springframework.boot:spring-boot-actuator-autoconfigure:jar:3.0.9:compile +[INFO] | | | \- org.springframework.boot:spring-boot-actuator:jar:3.0.9:compile +[INFO] | | \- io.micrometer:micrometer-core:jar:1.10.9:compile +[INFO] | | +- org.hdrhistogram:HdrHistogram:jar:2.1.12:runtime +[INFO] | | \- org.latencyutils:LatencyUtils:jar:2.0.3:runtime +[INFO] | \- com.alipay.sofa.serverless:sofa-serverless-base-plugin:jar:0.5.3:compile +[INFO] | \- com.alipay.sofa.serverless:sofa-serverless-common:jar:0.5.3:compile +[INFO] | \- com.alipay.sofa:hessian:jar:3.5.1:compile +[INFO] +- com.alipay.sofa:web-ark-plugin:jar:3.0.1:compile +[INFO] | \- com.alipay.sofa:sofa-ark-common:jar:3.0.1:compile +[INFO] | +- com.google.inject:guice:jar:5.1.0:compile +[INFO] | | +- javax.inject:javax.inject:jar:1:compile +[INFO] | | \- aopalliance:aopalliance:jar:1.0:compile +[INFO] | \- commons-io:commons-io:jar:2.7:compile +[INFO] +- com.alipay.sofa:log-sofa-boot-starter:jar:3.9.1:compile +[INFO] | \- com.alipay.sofa:log-sofa-boot:jar:3.9.1:compile +[INFO] +- com.alipay.sofa.common:sofa-common-tools:jar:2.0.3:compile +[INFO] | +- com.google.guava:guava:jar:27.0-jre:compile +[INFO] | | +- com.google.guava:failureaccess:jar:1.0:compile +[INFO] | | +- com.google.guava:listenablefuture:jar:9999.0-empty-to-avoid-conflict-with-guava:compile +[INFO] | | +- org.checkerframework:checker-qual:jar:2.5.2:compile +[INFO] | | +- com.google.errorprone:error_prone_annotations:jar:2.2.0:compile +[INFO] | | +- com.google.j2objc:j2objc-annotations:jar:1.1:compile +[INFO] | | \- org.codehaus.mojo:animal-sniffer-annotations:jar:1.17:compile +[INFO] | \- org.slf4j:slf4j-api:jar:2.0.7:compile +[INFO] \- com.alipay.sofa.serverless:sofa-serverless-adapter-log4j2:jar:0.5.3-jdk17:compile +[INFO] ------------------------------------------------------------------------ +[INFO] BUILD SUCCESS +[INFO] ------------------------------------------------------------------------ +[INFO] Total time: 2.040 s +[INFO] Finished at: 2023-11-18T17:45:19+08:00 +[INFO] ------------------------------------------------------------------------ diff --git a/samples/springboot3-samples/pom.xml b/samples/springboot3-samples/pom.xml index 7cf8e898e..3d2a3bcf6 100644 --- a/samples/springboot3-samples/pom.xml +++ b/samples/springboot3-samples/pom.xml @@ -21,7 +21,7 @@ 3.0.9 17 3.0.1 - 0.5.3-jdk17 + 0.5.3-jdk17-SNAPSHOT 3.4.2 1.7.1 0.6.1 diff --git a/samples/springboot3-samples/web/tomcat/README.md b/samples/springboot3-samples/web/tomcat/README.md index 9b259f35a..89e2d0389 100644 --- a/samples/springboot3-samples/web/tomcat/README.md +++ b/samples/springboot3-samples/web/tomcat/README.md @@ -13,7 +13,7 @@ base 为普通 springboot 改造成的基座,改造内容为在 pom 里增加 com.alipay.sofa.serverless sofa-serverless-base-starter - 0.5.3-jdk17 + 0.5.3-jdk17-SNAPSHOT diff --git a/samples/springboot3-samples/web/tomcat/base/pom.xml b/samples/springboot3-samples/web/tomcat/base/pom.xml index c1b20592e..ac8ee4e33 100644 --- a/samples/springboot3-samples/web/tomcat/base/pom.xml +++ b/samples/springboot3-samples/web/tomcat/base/pom.xml @@ -36,7 +36,7 @@ com.alipay.sofa.serverless sofa-serverless-base-starter - 0.5.3-jdk17 + 0.5.3-jdk17-SNAPSHOT From 3037cb2b555420fcbbcf77420c4609fa537fce6d Mon Sep 17 00:00:00 2001 From: "chaya.cy" Date: Sat, 18 Nov 2023 18:58:37 +0800 Subject: [PATCH 18/18] remove depdency tree --- .../logging/log4j2/base/tree.txt | 172 ------------------ .../msg/kafka/base/tree.txt | 170 ----------------- 2 files changed, 342 deletions(-) delete mode 100644 samples/springboot3-samples/logging/log4j2/base/tree.txt delete mode 100644 samples/springboot3-samples/msg/kafka/base/tree.txt diff --git a/samples/springboot3-samples/logging/log4j2/base/tree.txt b/samples/springboot3-samples/logging/log4j2/base/tree.txt deleted file mode 100644 index 32c7fc426..000000000 --- a/samples/springboot3-samples/logging/log4j2/base/tree.txt +++ /dev/null @@ -1,172 +0,0 @@ -[INFO] Scanning for projects... -[INFO] -[INFO] -------------< com.alipay.sofa.logging.log4j2:base-log4j2 >------------- -[INFO] Building base-log4j2 0.0.1-SNAPSHOT -[INFO] --------------------------------[ jar ]--------------------------------- -Downloading from mirror-all: https://maven.aliyun.com/repository/public/com/alipay/sofa/sofa-ark-springboot-starter/3.0.0/sofa-ark-springboot-starter-3.0.0.pom -Progress (1): 3.6/4.7 kB Progress (1): 4.7 kB Downloaded from mirror-all: https://maven.aliyun.com/repository/public/com/alipay/sofa/sofa-ark-springboot-starter/3.0.0/sofa-ark-springboot-starter-3.0.0.pom (4.7 kB at 5.6 kB/s) -Downloading from mirror-all: https://maven.aliyun.com/repository/public/com/alipay/sofa/sofa-ark-support-starter/3.0.0/sofa-ark-support-starter-3.0.0.pom -Progress (1): 2.6 kB Downloaded from mirror-all: https://maven.aliyun.com/repository/public/com/alipay/sofa/sofa-ark-support-starter/3.0.0/sofa-ark-support-starter-3.0.0.pom (2.6 kB at 7.4 kB/s) -Downloading from mirror-all: https://maven.aliyun.com/repository/public/com/alipay/sofa/sofa-ark-compatible-springboot1/3.0.0/sofa-ark-compatible-springboot1-3.0.0.pom -Progress (1): 2.2 kB Downloaded from mirror-all: https://maven.aliyun.com/repository/public/com/alipay/sofa/sofa-ark-compatible-springboot1/3.0.0/sofa-ark-compatible-springboot1-3.0.0.pom (2.2 kB at 8.3 kB/s) -Downloading from mirror-all: https://maven.aliyun.com/repository/public/com/alipay/sofa/sofa-ark-common-springboot/3.0.0/sofa-ark-common-springboot-3.0.0.pom -Progress (1): 1.4 kB Downloaded from mirror-all: https://maven.aliyun.com/repository/public/com/alipay/sofa/sofa-ark-common-springboot/3.0.0/sofa-ark-common-springboot-3.0.0.pom (1.4 kB at 4.1 kB/s) -Downloading from mirror-all: https://maven.aliyun.com/repository/public/com/alipay/sofa/sofa-ark-compatible-springboot2/3.0.0/sofa-ark-compatible-springboot2-3.0.0.pom -Progress (1): 3.2 kB Downloaded from mirror-all: https://maven.aliyun.com/repository/public/com/alipay/sofa/sofa-ark-compatible-springboot2/3.0.0/sofa-ark-compatible-springboot2-3.0.0.pom (3.2 kB at 12 kB/s) -[INFO] -[INFO] --- maven-dependency-plugin:3.3.0:tree (default-cli) @ base-log4j2 --- -[INFO] com.alipay.sofa.logging.log4j2:base-log4j2:jar:0.0.1-SNAPSHOT -[INFO] +- org.springframework.boot:spring-boot-starter-web:jar:3.0.9:compile -[INFO] | +- org.springframework.boot:spring-boot-starter:jar:3.0.9:compile -[INFO] | | +- org.springframework.boot:spring-boot:jar:3.0.9:compile -[INFO] | | +- org.springframework.boot:spring-boot-autoconfigure:jar:3.0.9:compile -[INFO] | | +- jakarta.annotation:jakarta.annotation-api:jar:2.1.1:compile -[INFO] | | \- org.yaml:snakeyaml:jar:1.33:compile -[INFO] | +- org.springframework.boot:spring-boot-starter-json:jar:3.0.9:compile -[INFO] | | +- com.fasterxml.jackson.core:jackson-databind:jar:2.14.3:compile -[INFO] | | | +- com.fasterxml.jackson.core:jackson-annotations:jar:2.14.3:compile -[INFO] | | | \- com.fasterxml.jackson.core:jackson-core:jar:2.14.3:compile -[INFO] | | +- com.fasterxml.jackson.datatype:jackson-datatype-jdk8:jar:2.14.3:compile -[INFO] | | +- com.fasterxml.jackson.datatype:jackson-datatype-jsr310:jar:2.14.3:compile -[INFO] | | \- com.fasterxml.jackson.module:jackson-module-parameter-names:jar:2.14.3:compile -[INFO] | +- org.springframework.boot:spring-boot-starter-tomcat:jar:3.0.9:compile -[INFO] | | +- org.apache.tomcat.embed:tomcat-embed-core:jar:10.1.11:compile -[INFO] | | +- org.apache.tomcat.embed:tomcat-embed-el:jar:10.1.11:compile -[INFO] | | \- org.apache.tomcat.embed:tomcat-embed-websocket:jar:10.1.11:compile -[INFO] | +- org.springframework:spring-web:jar:6.0.11:compile -[INFO] | | +- org.springframework:spring-beans:jar:6.0.11:compile -[INFO] | | \- io.micrometer:micrometer-observation:jar:1.10.9:compile -[INFO] | | \- io.micrometer:micrometer-commons:jar:1.10.9:compile -[INFO] | \- org.springframework:spring-webmvc:jar:6.0.11:compile -[INFO] | +- org.springframework:spring-aop:jar:6.0.11:compile -[INFO] | +- org.springframework:spring-context:jar:6.0.11:compile -[INFO] | \- org.springframework:spring-expression:jar:6.0.11:compile -[INFO] +- org.springframework.boot:spring-boot-starter-test:jar:3.0.9:test -[INFO] | +- org.springframework.boot:spring-boot-test:jar:3.0.9:test -[INFO] | +- org.springframework.boot:spring-boot-test-autoconfigure:jar:3.0.9:test -[INFO] | +- com.jayway.jsonpath:json-path:jar:2.7.0:test -[INFO] | | \- net.minidev:json-smart:jar:2.4.11:test -[INFO] | | \- net.minidev:accessors-smart:jar:2.4.11:test -[INFO] | | \- org.ow2.asm:asm:jar:9.3:test -[INFO] | +- jakarta.xml.bind:jakarta.xml.bind-api:jar:4.0.0:test -[INFO] | | \- jakarta.activation:jakarta.activation-api:jar:2.1.2:test -[INFO] | +- org.assertj:assertj-core:jar:3.23.1:test -[INFO] | | \- net.bytebuddy:byte-buddy:jar:1.12.23:test -[INFO] | +- org.hamcrest:hamcrest:jar:2.2:test -[INFO] | +- org.junit.jupiter:junit-jupiter:jar:5.9.3:test -[INFO] | | +- org.junit.jupiter:junit-jupiter-api:jar:5.9.3:test -[INFO] | | | +- org.opentest4j:opentest4j:jar:1.2.0:test -[INFO] | | | +- org.junit.platform:junit-platform-commons:jar:1.9.3:test -[INFO] | | | \- org.apiguardian:apiguardian-api:jar:1.1.2:test -[INFO] | | +- org.junit.jupiter:junit-jupiter-params:jar:5.9.3:test -[INFO] | | \- org.junit.jupiter:junit-jupiter-engine:jar:5.9.3:test -[INFO] | | \- org.junit.platform:junit-platform-engine:jar:1.9.3:test -[INFO] | +- org.mockito:mockito-core:jar:4.8.1:test -[INFO] | | +- net.bytebuddy:byte-buddy-agent:jar:1.12.23:compile -[INFO] | | \- org.objenesis:objenesis:jar:3.2:test -[INFO] | +- org.mockito:mockito-junit-jupiter:jar:4.8.1:test -[INFO] | +- org.skyscreamer:jsonassert:jar:1.5.1:test -[INFO] | | \- com.vaadin.external.google:android-json:jar:0.0.20131108.vaadin1:test -[INFO] | +- org.springframework:spring-core:jar:6.0.11:compile -[INFO] | | \- org.springframework:spring-jcl:jar:6.0.11:compile -[INFO] | +- org.springframework:spring-test:jar:6.0.11:test -[INFO] | \- org.xmlunit:xmlunit-core:jar:2.9.1:test -[INFO] +- com.alipay.sofa.serverless:sofa-serverless-base-starter:jar:0.5.3-jdk17:compile -[INFO] | +- com.alipay.sofa:sofa-ark-all:jar:3.0.0:compile -[INFO] | | +- com.alipay.sofa:sofa-ark-exception:jar:3.0.0:compile -[INFO] | | +- com.alipay.sofa:sofa-ark-spi:jar:3.0.0:compile -[INFO] | | +- com.alipay.sofa:sofa-ark-archive:jar:3.0.0:compile -[INFO] | | | \- org.apache.maven:maven-model:jar:3.8.1:compile -[INFO] | | | \- org.codehaus.plexus:plexus-utils:jar:3.2.1:compile -[INFO] | | \- com.alipay.sofa:sofa-ark-container:jar:3.0.0:compile -[INFO] | | +- com.google.inject.extensions:guice-multibindings:jar:4.2.3:compile -[INFO] | | +- io.netty:netty-all:jar:4.1.94.Final:compile -[INFO] | | | +- io.netty:netty-buffer:jar:4.1.94.Final:compile -[INFO] | | | +- io.netty:netty-codec:jar:4.1.94.Final:compile -[INFO] | | | +- io.netty:netty-codec-dns:jar:4.1.94.Final:compile -[INFO] | | | +- io.netty:netty-codec-haproxy:jar:4.1.94.Final:compile -[INFO] | | | +- io.netty:netty-codec-http:jar:4.1.94.Final:compile -[INFO] | | | +- io.netty:netty-codec-http2:jar:4.1.94.Final:compile -[INFO] | | | +- io.netty:netty-codec-memcache:jar:4.1.94.Final:compile -[INFO] | | | +- io.netty:netty-codec-mqtt:jar:4.1.94.Final:compile -[INFO] | | | +- io.netty:netty-codec-redis:jar:4.1.94.Final:compile -[INFO] | | | +- io.netty:netty-codec-smtp:jar:4.1.94.Final:compile -[INFO] | | | +- io.netty:netty-codec-socks:jar:4.1.94.Final:compile -[INFO] | | | +- io.netty:netty-codec-stomp:jar:4.1.94.Final:compile -[INFO] | | | +- io.netty:netty-codec-xml:jar:4.1.94.Final:compile -[INFO] | | | +- io.netty:netty-common:jar:4.1.94.Final:compile -[INFO] | | | +- io.netty:netty-handler:jar:4.1.94.Final:compile -[INFO] | | | +- io.netty:netty-transport-native-unix-common:jar:4.1.94.Final:compile -[INFO] | | | +- io.netty:netty-handler-proxy:jar:4.1.94.Final:compile -[INFO] | | | +- io.netty:netty-handler-ssl-ocsp:jar:4.1.94.Final:compile -[INFO] | | | +- io.netty:netty-resolver:jar:4.1.94.Final:compile -[INFO] | | | +- io.netty:netty-resolver-dns:jar:4.1.94.Final:compile -[INFO] | | | +- io.netty:netty-transport:jar:4.1.94.Final:compile -[INFO] | | | +- io.netty:netty-transport-rxtx:jar:4.1.94.Final:compile -[INFO] | | | +- io.netty:netty-transport-sctp:jar:4.1.94.Final:compile -[INFO] | | | +- io.netty:netty-transport-udt:jar:4.1.94.Final:compile -[INFO] | | | +- io.netty:netty-transport-classes-epoll:jar:4.1.94.Final:compile -[INFO] | | | +- io.netty:netty-transport-classes-kqueue:jar:4.1.94.Final:compile -[INFO] | | | +- io.netty:netty-resolver-dns-classes-macos:jar:4.1.94.Final:compile -[INFO] | | | +- io.netty:netty-transport-native-epoll:jar:linux-x86_64:4.1.94.Final:runtime -[INFO] | | | +- io.netty:netty-transport-native-epoll:jar:linux-aarch_64:4.1.94.Final:runtime -[INFO] | | | +- io.netty:netty-transport-native-kqueue:jar:osx-x86_64:4.1.94.Final:runtime -[INFO] | | | +- io.netty:netty-transport-native-kqueue:jar:osx-aarch_64:4.1.94.Final:runtime -[INFO] | | | +- io.netty:netty-resolver-dns-native-macos:jar:osx-x86_64:4.1.94.Final:runtime -[INFO] | | | \- io.netty:netty-resolver-dns-native-macos:jar:osx-aarch_64:4.1.94.Final:runtime -[INFO] | | \- com.taobao.text:text-ui:jar:0.0.3:compile -[INFO] | +- com.alipay.sofa:sofa-ark-springboot-starter:jar:3.0.0:compile -[INFO] | | +- com.alipay.sofa:sofa-ark-support-starter:jar:3.0.0:compile -[INFO] | | +- com.alipay.sofa:sofa-ark-api:jar:3.0.0:compile -[INFO] | | +- com.alipay.sofa:sofa-ark-compatible-springboot1:jar:3.0.0:compile -[INFO] | | | \- com.alipay.sofa:sofa-ark-common-springboot:jar:3.0.0:compile -[INFO] | | +- com.alipay.sofa:sofa-ark-compatible-springboot2:jar:3.0.0:compile -[INFO] | | \- org.springframework.boot:spring-boot-loader:jar:3.0.9:compile -[INFO] | +- com.alipay.sofa.serverless:arklet-springboot-starter:jar:0.5.3:compile -[INFO] | | +- com.alipay.sofa.serverless:arklet-core:jar:0.5.3:compile -[INFO] | | | +- com.github.oshi:oshi-core:jar:6.4.5:compile -[INFO] | | | | +- net.java.dev.jna:jna:jar:5.13.0:compile -[INFO] | | | | \- net.java.dev.jna:jna-platform:jar:5.13.0:compile -[INFO] | | | +- com.alibaba:fastjson:jar:1.2.83:compile -[INFO] | | | +- org.projectlombok:lombok:jar:1.18.28:compile -[INFO] | | | \- org.apache.commons:commons-lang3:jar:3.12.0:compile -[INFO] | | \- org.springframework.boot:spring-boot-starter-actuator:jar:3.0.9:compile -[INFO] | | +- org.springframework.boot:spring-boot-actuator-autoconfigure:jar:3.0.9:compile -[INFO] | | | \- org.springframework.boot:spring-boot-actuator:jar:3.0.9:compile -[INFO] | | \- io.micrometer:micrometer-core:jar:1.10.9:compile -[INFO] | | +- org.hdrhistogram:HdrHistogram:jar:2.1.12:runtime -[INFO] | | \- org.latencyutils:LatencyUtils:jar:2.0.3:runtime -[INFO] | \- com.alipay.sofa.serverless:sofa-serverless-base-plugin:jar:0.5.3:compile -[INFO] | \- com.alipay.sofa.serverless:sofa-serverless-common:jar:0.5.3:compile -[INFO] | \- com.alipay.sofa:hessian:jar:3.5.1:compile -[INFO] +- org.springframework.boot:spring-boot-starter-log4j2:jar:3.0.9:compile -[INFO] | +- org.apache.logging.log4j:log4j-slf4j2-impl:jar:2.19.0:compile -[INFO] | | \- org.apache.logging.log4j:log4j-api:jar:2.19.0:compile -[INFO] | +- org.apache.logging.log4j:log4j-core:jar:2.19.0:compile -[INFO] | \- org.apache.logging.log4j:log4j-jul:jar:2.19.0:compile -[INFO] +- com.alipay.sofa:web-ark-plugin:jar:3.0.0:compile -[INFO] | \- com.alipay.sofa:sofa-ark-common:jar:3.0.0:compile -[INFO] | +- com.google.inject:guice:jar:5.1.0:compile -[INFO] | | +- javax.inject:javax.inject:jar:1:compile -[INFO] | | \- aopalliance:aopalliance:jar:1.0:compile -[INFO] | \- commons-io:commons-io:jar:2.7:compile -[INFO] +- com.alipay.sofa:log-sofa-boot-starter:jar:3.9.1:compile -[INFO] | \- com.alipay.sofa:log-sofa-boot:jar:3.9.1:compile -[INFO] +- com.alipay.sofa.common:sofa-common-tools:jar:2.0.3:compile -[INFO] | +- com.google.guava:guava:jar:27.0-jre:compile -[INFO] | | +- com.google.guava:failureaccess:jar:1.0:compile -[INFO] | | +- com.google.guava:listenablefuture:jar:9999.0-empty-to-avoid-conflict-with-guava:compile -[INFO] | | +- com.google.code.findbugs:jsr305:jar:3.0.2:compile -[INFO] | | +- org.checkerframework:checker-qual:jar:2.5.2:compile -[INFO] | | +- com.google.errorprone:error_prone_annotations:jar:2.2.0:compile -[INFO] | | +- com.google.j2objc:j2objc-annotations:jar:1.1:compile -[INFO] | | \- org.codehaus.mojo:animal-sniffer-annotations:jar:1.17:compile -[INFO] | \- org.slf4j:slf4j-api:jar:2.0.7:compile -[INFO] +- com.lmax:disruptor:jar:3.4.2:compile -[INFO] \- com.alipay.sofa.serverless:sofa-serverless-adapter-log4j2:jar:0.5.3-jdk17:compile -[INFO] ------------------------------------------------------------------------ -[INFO] BUILD SUCCESS -[INFO] ------------------------------------------------------------------------ -[INFO] Total time: 4.480 s -[INFO] Finished at: 2023-11-18T13:10:12+08:00 -[INFO] ------------------------------------------------------------------------ diff --git a/samples/springboot3-samples/msg/kafka/base/tree.txt b/samples/springboot3-samples/msg/kafka/base/tree.txt deleted file mode 100644 index 543850659..000000000 --- a/samples/springboot3-samples/msg/kafka/base/tree.txt +++ /dev/null @@ -1,170 +0,0 @@ -[INFO] Scanning for projects... -[INFO] -[INFO] ----------------< com.alipay.sofa.msg.kafka:base-kafka >---------------- -[INFO] Building base-kafka 0.0.1-SNAPSHOT -[INFO] --------------------------------[ jar ]--------------------------------- -[INFO] -[INFO] --- maven-dependency-plugin:3.3.0:tree (default-cli) @ base-kafka --- -[INFO] com.alipay.sofa.msg.kafka:base-kafka:jar:0.0.1-SNAPSHOT -[INFO] +- org.springframework.boot:spring-boot-starter-web:jar:3.0.9:compile -[INFO] | +- org.springframework.boot:spring-boot-starter:jar:3.0.9:compile -[INFO] | | +- org.springframework.boot:spring-boot:jar:3.0.9:compile -[INFO] | | +- org.springframework.boot:spring-boot-autoconfigure:jar:3.0.9:compile -[INFO] | | +- jakarta.annotation:jakarta.annotation-api:jar:2.1.1:compile -[INFO] | | \- org.yaml:snakeyaml:jar:1.33:compile -[INFO] | +- org.springframework.boot:spring-boot-starter-json:jar:3.0.9:compile -[INFO] | | +- com.fasterxml.jackson.core:jackson-databind:jar:2.14.3:compile -[INFO] | | | +- com.fasterxml.jackson.core:jackson-annotations:jar:2.14.3:compile -[INFO] | | | \- com.fasterxml.jackson.core:jackson-core:jar:2.14.3:compile -[INFO] | | +- com.fasterxml.jackson.datatype:jackson-datatype-jdk8:jar:2.14.3:compile -[INFO] | | +- com.fasterxml.jackson.datatype:jackson-datatype-jsr310:jar:2.14.3:compile -[INFO] | | \- com.fasterxml.jackson.module:jackson-module-parameter-names:jar:2.14.3:compile -[INFO] | +- org.springframework.boot:spring-boot-starter-tomcat:jar:3.0.9:compile -[INFO] | | +- org.apache.tomcat.embed:tomcat-embed-core:jar:10.1.11:compile -[INFO] | | +- org.apache.tomcat.embed:tomcat-embed-el:jar:10.1.11:compile -[INFO] | | \- org.apache.tomcat.embed:tomcat-embed-websocket:jar:10.1.11:compile -[INFO] | +- org.springframework:spring-web:jar:6.0.11:compile -[INFO] | | \- org.springframework:spring-beans:jar:6.0.11:compile -[INFO] | \- org.springframework:spring-webmvc:jar:6.0.11:compile -[INFO] | +- org.springframework:spring-aop:jar:6.0.11:compile -[INFO] | \- org.springframework:spring-expression:jar:6.0.11:compile -[INFO] +- org.springframework.boot:spring-boot-starter-test:jar:3.0.9:test -[INFO] | +- org.springframework.boot:spring-boot-test:jar:3.0.9:test -[INFO] | +- org.springframework.boot:spring-boot-test-autoconfigure:jar:3.0.9:test -[INFO] | +- com.jayway.jsonpath:json-path:jar:2.7.0:test -[INFO] | | \- net.minidev:json-smart:jar:2.4.11:test -[INFO] | | \- net.minidev:accessors-smart:jar:2.4.11:test -[INFO] | | \- org.ow2.asm:asm:jar:9.3:test -[INFO] | +- jakarta.xml.bind:jakarta.xml.bind-api:jar:4.0.0:test -[INFO] | | \- jakarta.activation:jakarta.activation-api:jar:2.1.2:test -[INFO] | +- org.assertj:assertj-core:jar:3.23.1:test -[INFO] | | \- net.bytebuddy:byte-buddy:jar:1.12.23:test -[INFO] | +- org.hamcrest:hamcrest:jar:2.2:test -[INFO] | +- org.junit.jupiter:junit-jupiter:jar:5.9.3:test -[INFO] | | +- org.junit.jupiter:junit-jupiter-api:jar:5.9.3:test -[INFO] | | | +- org.opentest4j:opentest4j:jar:1.2.0:test -[INFO] | | | +- org.junit.platform:junit-platform-commons:jar:1.9.3:test -[INFO] | | | \- org.apiguardian:apiguardian-api:jar:1.1.2:test -[INFO] | | +- org.junit.jupiter:junit-jupiter-params:jar:5.9.3:test -[INFO] | | \- org.junit.jupiter:junit-jupiter-engine:jar:5.9.3:test -[INFO] | | \- org.junit.platform:junit-platform-engine:jar:1.9.3:test -[INFO] | +- org.mockito:mockito-core:jar:4.8.1:test -[INFO] | | +- net.bytebuddy:byte-buddy-agent:jar:1.12.23:compile -[INFO] | | \- org.objenesis:objenesis:jar:3.2:test -[INFO] | +- org.mockito:mockito-junit-jupiter:jar:4.8.1:test -[INFO] | +- org.skyscreamer:jsonassert:jar:1.5.1:test -[INFO] | | \- com.vaadin.external.google:android-json:jar:0.0.20131108.vaadin1:test -[INFO] | +- org.springframework:spring-core:jar:6.0.11:compile -[INFO] | | \- org.springframework:spring-jcl:jar:6.0.11:compile -[INFO] | +- org.springframework:spring-test:jar:6.0.11:test -[INFO] | \- org.xmlunit:xmlunit-core:jar:2.9.1:test -[INFO] +- org.springframework.boot:spring-boot-starter-log4j2:jar:3.0.9:compile -[INFO] | +- org.apache.logging.log4j:log4j-slf4j2-impl:jar:2.19.0:compile -[INFO] | | \- org.apache.logging.log4j:log4j-api:jar:2.19.0:compile -[INFO] | +- org.apache.logging.log4j:log4j-core:jar:2.19.0:compile -[INFO] | \- org.apache.logging.log4j:log4j-jul:jar:2.19.0:compile -[INFO] +- org.springframework.kafka:spring-kafka:jar:3.0.9:compile -[INFO] | +- org.springframework:spring-context:jar:6.0.11:compile -[INFO] | +- org.springframework:spring-messaging:jar:6.0.11:compile -[INFO] | +- org.springframework:spring-tx:jar:6.0.11:compile -[INFO] | +- org.springframework.retry:spring-retry:jar:2.0.2:compile -[INFO] | +- org.apache.kafka:kafka-clients:jar:3.3.2:compile -[INFO] | | +- com.github.luben:zstd-jni:jar:1.5.2-1:runtime -[INFO] | | +- org.lz4:lz4-java:jar:1.8.0:runtime -[INFO] | | \- org.xerial.snappy:snappy-java:jar:1.1.8.4:runtime -[INFO] | +- io.micrometer:micrometer-observation:jar:1.10.9:compile -[INFO] | | \- io.micrometer:micrometer-commons:jar:1.10.9:compile -[INFO] | \- com.google.code.findbugs:jsr305:jar:3.0.2:compile -[INFO] +- com.lmax:disruptor:jar:3.4.2:compile -[INFO] +- com.alipay.sofa.serverless:sofa-serverless-base-starter:jar:0.5.3-jdk17:compile -[INFO] | +- com.alipay.sofa:sofa-ark-all:jar:3.0.1:compile -[INFO] | | +- com.alipay.sofa:sofa-ark-exception:jar:3.0.1:compile -[INFO] | | +- com.alipay.sofa:sofa-ark-spi:jar:3.0.1:compile -[INFO] | | +- com.alipay.sofa:sofa-ark-archive:jar:3.0.1:compile -[INFO] | | | \- org.apache.maven:maven-model:jar:3.8.1:compile -[INFO] | | | \- org.codehaus.plexus:plexus-utils:jar:3.2.1:compile -[INFO] | | \- com.alipay.sofa:sofa-ark-container:jar:3.0.1:compile -[INFO] | | +- com.google.inject.extensions:guice-multibindings:jar:4.2.3:compile -[INFO] | | +- io.netty:netty-all:jar:4.1.94.Final:compile -[INFO] | | | +- io.netty:netty-buffer:jar:4.1.94.Final:compile -[INFO] | | | +- io.netty:netty-codec:jar:4.1.94.Final:compile -[INFO] | | | +- io.netty:netty-codec-dns:jar:4.1.94.Final:compile -[INFO] | | | +- io.netty:netty-codec-haproxy:jar:4.1.94.Final:compile -[INFO] | | | +- io.netty:netty-codec-http:jar:4.1.94.Final:compile -[INFO] | | | +- io.netty:netty-codec-http2:jar:4.1.94.Final:compile -[INFO] | | | +- io.netty:netty-codec-memcache:jar:4.1.94.Final:compile -[INFO] | | | +- io.netty:netty-codec-mqtt:jar:4.1.94.Final:compile -[INFO] | | | +- io.netty:netty-codec-redis:jar:4.1.94.Final:compile -[INFO] | | | +- io.netty:netty-codec-smtp:jar:4.1.94.Final:compile -[INFO] | | | +- io.netty:netty-codec-socks:jar:4.1.94.Final:compile -[INFO] | | | +- io.netty:netty-codec-stomp:jar:4.1.94.Final:compile -[INFO] | | | +- io.netty:netty-codec-xml:jar:4.1.94.Final:compile -[INFO] | | | +- io.netty:netty-common:jar:4.1.94.Final:compile -[INFO] | | | +- io.netty:netty-handler:jar:4.1.94.Final:compile -[INFO] | | | +- io.netty:netty-transport-native-unix-common:jar:4.1.94.Final:compile -[INFO] | | | +- io.netty:netty-handler-proxy:jar:4.1.94.Final:compile -[INFO] | | | +- io.netty:netty-handler-ssl-ocsp:jar:4.1.94.Final:compile -[INFO] | | | +- io.netty:netty-resolver:jar:4.1.94.Final:compile -[INFO] | | | +- io.netty:netty-resolver-dns:jar:4.1.94.Final:compile -[INFO] | | | +- io.netty:netty-transport:jar:4.1.94.Final:compile -[INFO] | | | +- io.netty:netty-transport-rxtx:jar:4.1.94.Final:compile -[INFO] | | | +- io.netty:netty-transport-sctp:jar:4.1.94.Final:compile -[INFO] | | | +- io.netty:netty-transport-udt:jar:4.1.94.Final:compile -[INFO] | | | +- io.netty:netty-transport-classes-epoll:jar:4.1.94.Final:compile -[INFO] | | | +- io.netty:netty-transport-classes-kqueue:jar:4.1.94.Final:compile -[INFO] | | | +- io.netty:netty-resolver-dns-classes-macos:jar:4.1.94.Final:compile -[INFO] | | | +- io.netty:netty-transport-native-epoll:jar:linux-x86_64:4.1.94.Final:runtime -[INFO] | | | +- io.netty:netty-transport-native-epoll:jar:linux-aarch_64:4.1.94.Final:runtime -[INFO] | | | +- io.netty:netty-transport-native-kqueue:jar:osx-x86_64:4.1.94.Final:runtime -[INFO] | | | +- io.netty:netty-transport-native-kqueue:jar:osx-aarch_64:4.1.94.Final:runtime -[INFO] | | | +- io.netty:netty-resolver-dns-native-macos:jar:osx-x86_64:4.1.94.Final:runtime -[INFO] | | | \- io.netty:netty-resolver-dns-native-macos:jar:osx-aarch_64:4.1.94.Final:runtime -[INFO] | | \- com.taobao.text:text-ui:jar:0.0.3:compile -[INFO] | +- com.alipay.sofa:sofa-ark-springboot-starter:jar:3.0.1:compile -[INFO] | | +- com.alipay.sofa:sofa-ark-support-starter:jar:3.0.1:compile -[INFO] | | +- com.alipay.sofa:sofa-ark-api:jar:3.0.1:compile -[INFO] | | +- com.alipay.sofa:sofa-ark-compatible-springboot1:jar:3.0.1:compile -[INFO] | | | \- com.alipay.sofa:sofa-ark-common-springboot:jar:3.0.1:compile -[INFO] | | +- com.alipay.sofa:sofa-ark-compatible-springboot2:jar:3.0.1:compile -[INFO] | | \- org.springframework.boot:spring-boot-loader:jar:3.0.9:compile -[INFO] | +- com.alipay.sofa.serverless:arklet-springboot-starter:jar:0.5.3:compile -[INFO] | | +- com.alipay.sofa.serverless:arklet-core:jar:0.5.3:compile -[INFO] | | | +- com.github.oshi:oshi-core:jar:6.4.5:compile -[INFO] | | | | +- net.java.dev.jna:jna:jar:5.13.0:compile -[INFO] | | | | \- net.java.dev.jna:jna-platform:jar:5.13.0:compile -[INFO] | | | +- com.alibaba:fastjson:jar:1.2.83:compile -[INFO] | | | +- org.projectlombok:lombok:jar:1.18.28:compile -[INFO] | | | \- org.apache.commons:commons-lang3:jar:3.12.0:compile -[INFO] | | \- org.springframework.boot:spring-boot-starter-actuator:jar:3.0.9:compile -[INFO] | | +- org.springframework.boot:spring-boot-actuator-autoconfigure:jar:3.0.9:compile -[INFO] | | | \- org.springframework.boot:spring-boot-actuator:jar:3.0.9:compile -[INFO] | | \- io.micrometer:micrometer-core:jar:1.10.9:compile -[INFO] | | +- org.hdrhistogram:HdrHistogram:jar:2.1.12:runtime -[INFO] | | \- org.latencyutils:LatencyUtils:jar:2.0.3:runtime -[INFO] | \- com.alipay.sofa.serverless:sofa-serverless-base-plugin:jar:0.5.3:compile -[INFO] | \- com.alipay.sofa.serverless:sofa-serverless-common:jar:0.5.3:compile -[INFO] | \- com.alipay.sofa:hessian:jar:3.5.1:compile -[INFO] +- com.alipay.sofa:web-ark-plugin:jar:3.0.1:compile -[INFO] | \- com.alipay.sofa:sofa-ark-common:jar:3.0.1:compile -[INFO] | +- com.google.inject:guice:jar:5.1.0:compile -[INFO] | | +- javax.inject:javax.inject:jar:1:compile -[INFO] | | \- aopalliance:aopalliance:jar:1.0:compile -[INFO] | \- commons-io:commons-io:jar:2.7:compile -[INFO] +- com.alipay.sofa:log-sofa-boot-starter:jar:3.9.1:compile -[INFO] | \- com.alipay.sofa:log-sofa-boot:jar:3.9.1:compile -[INFO] +- com.alipay.sofa.common:sofa-common-tools:jar:2.0.3:compile -[INFO] | +- com.google.guava:guava:jar:27.0-jre:compile -[INFO] | | +- com.google.guava:failureaccess:jar:1.0:compile -[INFO] | | +- com.google.guava:listenablefuture:jar:9999.0-empty-to-avoid-conflict-with-guava:compile -[INFO] | | +- org.checkerframework:checker-qual:jar:2.5.2:compile -[INFO] | | +- com.google.errorprone:error_prone_annotations:jar:2.2.0:compile -[INFO] | | +- com.google.j2objc:j2objc-annotations:jar:1.1:compile -[INFO] | | \- org.codehaus.mojo:animal-sniffer-annotations:jar:1.17:compile -[INFO] | \- org.slf4j:slf4j-api:jar:2.0.7:compile -[INFO] \- com.alipay.sofa.serverless:sofa-serverless-adapter-log4j2:jar:0.5.3-jdk17:compile -[INFO] ------------------------------------------------------------------------ -[INFO] BUILD SUCCESS -[INFO] ------------------------------------------------------------------------ -[INFO] Total time: 2.040 s -[INFO] Finished at: 2023-11-18T17:45:19+08:00 -[INFO] ------------------------------------------------------------------------