This is an automated email from the ASF dual-hosted git repository.
xiaoyu pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/shenyu.git
The following commit(s) were added to refs/heads/master by this push:
new 7711d775d [type:fix] Fix example module main class path (#4978)
7711d775d is described below
commit 7711d775dad78b20b4bce4dd24ff475f5c63a463
Author: gongzhongqiang <[email protected]>
AuthorDate: Thu Aug 10 11:05:34 2023 +0800
[type:fix] Fix example module main class path (#4978)
Co-authored-by: gongzhongqiang <[email protected]>
---
shenyu-examples/shenyu-examples-http-swagger2/pom.xml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/shenyu-examples/shenyu-examples-http-swagger2/pom.xml
b/shenyu-examples/shenyu-examples-http-swagger2/pom.xml
index 645c38c23..8901cf27d 100644
--- a/shenyu-examples/shenyu-examples-http-swagger2/pom.xml
+++ b/shenyu-examples/shenyu-examples-http-swagger2/pom.xml
@@ -96,7 +96,7 @@
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
-
<mainClass>org.apache.shenyu.examples.org.apache.shenyu.examples.http.ShenyuTestSwaggerApplication</mainClass>
+
<mainClass>org.apache.shenyu.examples.http.ShenyuTestSwaggerApplication</mainClass>
<executable>true</executable>
</configuration>
</plugin>