diff --git a/liteflow-test-report/.gitignore b/liteflow-test-report/.gitignore
new file mode 100644
index 000000000..e19921afc
--- /dev/null
+++ b/liteflow-test-report/.gitignore
@@ -0,0 +1,83 @@
+# Compiled source #
+###################
+*.com
+*.class
+*.dll
+*.exe
+*.o
+*.so
+
+
+# Packages #
+############
+# it's better to unpack these files and commit the raw source
+# git has its own built in compression methods
+*.7z
+*.dmg
+*.gz
+*.iso
+*.jar
+*.rar
+*.tar
+*.zip
+*.war
+*.del
+*.pmd
+.tern-project
+
+
+# Logs and databases #
+######################
+*.log
+*.log.*
+# OS generated files #
+######################
+.DS_Store*
+ehthumbs.db
+Icon?
+Thumbs.db
+
+
+# Editor Files #
+################
+*~
+*.swp
+
+
+# Gradle Files #
+################
+.gradle
+
+
+# Build output directies
+/target
+*/target
+/build
+*/build
+
+
+# IntelliJ specific files/directories
+out
+.idea
+*.ipr
+*.iws
+*.iml
+atlassian-ide-plugin.xml
+
+
+# Eclipse specific files/directories
+.classpath
+.project
+.settings
+.metadata
+.myeclipse
+
+
+# NetBeans specific files/directories
+.nbattrs
+
+*.mymetadata
+/logs
+*/logs
+
+/payClear-timer/.tern-project
diff --git a/liteflow-test-report/pom.xml b/liteflow-test-report/pom.xml
new file mode 100644
index 000000000..e8950a8be
--- /dev/null
+++ b/liteflow-test-report/pom.xml
@@ -0,0 +1,59 @@
+
+
+
+ liteflow
+ com.yomahub
+ 2.5.0-SNAPSHOT
+
+ 4.0.0
+
+ liteflow-test-report
+ Test rate statistics aggregation, no actual working code.
+
+
+ true
+ true
+
+
+
+ ${project.groupId}
+ liteflow-core
+ ${project.version}
+
+
+ ${project.groupId}
+ liteflow-spring-boot-starter
+ ${project.version}
+
+
+
+
+
+
+ org.jacoco
+ jacoco-maven-plugin
+ 0.8.6
+
+
+ pre-unit-test
+
+ prepare-agent
+
+
+
+ post-unit-test
+ test
+
+ report-aggregate
+
+
+ ${basedir}/../target/site/jacoco
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/pom.xml b/pom.xml
index a5a22648b..30630e4ab 100644
--- a/pom.xml
+++ b/pom.xml
@@ -205,6 +205,29 @@
+
+ org.jacoco
+ jacoco-maven-plugin
+ 0.8.6
+
+
+ pre-unit-test
+
+ prepare-agent
+
+
+
+ post-unit-test
+ test
+
+ report-aggregate
+
+
+ ${basedir}/../target/site/jacoco
+
+
+
+
@@ -214,6 +237,7 @@
liteflow-test
liteflow-test-springboot
liteflow-test-spring
+ liteflow-test-report