Skip to content

Commit 0bd370f

Browse files
authored
Merge pull request #79 from codingapi/dev
Dev
2 parents f62f973 + b87e6a7 commit 0bd370f

File tree

24 files changed

+144
-38
lines changed

24 files changed

+144
-38
lines changed

example/example-application/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>springboot-example</artifactId>
77
<groupId>com.codingapi.springboot</groupId>
8-
<version>3.3.6</version>
8+
<version>3.3.10</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

example/example-application/src/main/java/com/codingapi/example/handler/CHandler.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
package com.codingapi.example.handler;
22

3+
import com.codingapi.example.event.AEvent;
34
import com.codingapi.example.event.CEvent;
5+
import com.codingapi.springboot.framework.event.EventPusher;
46
import com.codingapi.springboot.framework.event.EventTraceContext;
57
import com.codingapi.springboot.framework.event.IHandler;
68
import lombok.extern.slf4j.Slf4j;
@@ -14,7 +16,7 @@ public class CHandler implements IHandler<CEvent> {
1416
public void handler(CEvent event) {
1517
log.info("c event:{},eventKey:{}", event, EventTraceContext.getInstance().getEventKey());
1618

17-
// EventPusher.push(new AEvent());
19+
// EventPusher.push(new AEvent(),true);
1820
// throw new RuntimeException("c handler error");
1921
}
2022

example/example-domain/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>springboot-example</artifactId>
77
<groupId>com.codingapi.springboot</groupId>
8-
<version>3.3.6</version>
8+
<version>3.3.10</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

example/example-infra-flow/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>springboot-example</artifactId>
77
<groupId>com.codingapi.springboot</groupId>
8-
<version>3.3.6</version>
8+
<version>3.3.10</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

example/example-infra-jpa/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>springboot-example</artifactId>
77
<groupId>com.codingapi.springboot</groupId>
8-
<version>3.3.6</version>
8+
<version>3.3.10</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

example/example-server/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>springboot-example</artifactId>
77
<groupId>com.codingapi.springboot</groupId>
8-
<version>3.3.6</version>
8+
<version>3.3.10</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

example/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
</parent>
1818

1919
<artifactId>springboot-example</artifactId>
20-
<version>3.3.6</version>
20+
<version>3.3.10</version>
2121

2222
<name>springboot-example</name>
2323
<description>springboot-example project for Spring Boot</description>

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
<groupId>com.codingapi.springboot</groupId>
1414
<artifactId>springboot-parent</artifactId>
15-
<version>3.3.6</version>
15+
<version>3.3.10</version>
1616

1717
<url>https://github.com/codingapi/springboot-framewrok</url>
1818
<name>springboot-parent</name>

springboot-starter-data-fast/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>springboot-parent</artifactId>
77
<groupId>com.codingapi.springboot</groupId>
8-
<version>3.3.6</version>
8+
<version>3.3.10</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

springboot-starter-flow/pom.xml

Lines changed: 26 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<artifactId>springboot-parent</artifactId>
88
<groupId>com.codingapi.springboot</groupId>
9-
<version>3.3.6</version>
9+
<version>3.3.10</version>
1010
</parent>
1111

1212
<name>springboot-starter-flow</name>
@@ -46,5 +46,30 @@
4646
</dependencies>
4747

4848

49+
<build>
50+
<plugins>
51+
<plugin>
52+
<groupId>org.jacoco</groupId>
53+
<artifactId>jacoco-maven-plugin</artifactId>
54+
<version>0.8.12</version>
55+
<executions>
56+
<execution>
57+
<goals>
58+
<goal>prepare-agent</goal>
59+
</goals>
60+
</execution>
61+
<execution>
62+
<id>report</id>
63+
<phase>test</phase>
64+
<goals>
65+
<goal>report</goal>
66+
</goals>
67+
</execution>
68+
</executions>
69+
</plugin>
70+
71+
72+
</plugins>
73+
</build>
4974

5075
</project>

0 commit comments

Comments
 (0)