Skip to content

Commit 5506791

Browse files
committed
release: release 1.0.8 version
1 parent 10dbc18 commit 5506791

File tree

70 files changed

+140
-107
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

70 files changed

+140
-107
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ You can import all vrml modules:
207207
<dependency>
208208
<groupId>group.rxcloud</groupId>
209209
<artifactId>vrml</artifactId>
210-
<version>1.0.7</version>
210+
<version>1.0.8</version>
211211
<type>pom</type>
212212
<scope>import</scope>
213213
</dependency>
@@ -219,7 +219,7 @@ Latest feature branch:
219219
<dependency>
220220
<groupId>group.rxcloud</groupId>
221221
<artifactId>vrml</artifactId>
222-
<version>1.0.7</version>
222+
<version>1.0.8</version>
223223
<type>pom</type>
224224
<scope>import</scope>
225225
</dependency>

README_CN.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ You can import all vrml modules:
206206
<dependency>
207207
<groupId>group.rxcloud</groupId>
208208
<artifactId>vrml</artifactId>
209-
<version>1.0.7</version>
209+
<version>1.0.8</version>
210210
<type>pom</type>
211211
<scope>import</scope>
212212
</dependency>
@@ -219,7 +219,7 @@ Latest feature branch:
219219
<dependency>
220220
<groupId>group.rxcloud</groupId>
221221
<artifactId>vrml</artifactId>
222-
<version>1.0.7</version>
222+
<version>1.0.8</version>
223223
<type>pom</type>
224224
<scope>import</scope>
225225
</dependency>

pom.xml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<groupId>group.rxcloud</groupId>
88
<artifactId>vrml</artifactId>
99
<packaging>pom</packaging>
10-
<version>1.0.7</version>
10+
<version>1.0.8</version>
1111

1212
<name>vrml</name>
1313
<description>Vrml is a useful api library for java work.</description>
@@ -68,7 +68,6 @@
6868
<properties>
6969
<java.version>8</java.version>
7070
<file.encoding>UTF-8</file.encoding>
71-
<maven.version>3.8.1</maven.version>
7271

7372
<!-- 2022.4.2 lasted version -->
7473
<commons-lang3.version>3.12.0</commons-lang3.version>
@@ -186,7 +185,7 @@
186185
<optional>true</optional>
187186
</dependency>
188187

189-
<!--slf4j-api -->
188+
<!-- slf4j-api -->
190189
<dependency>
191190
<groupId>org.slf4j</groupId>
192191
<artifactId>slf4j-api</artifactId>
@@ -267,7 +266,7 @@
267266
<plugin>
268267
<groupId>org.apache.maven.plugins</groupId>
269268
<artifactId>maven-compiler-plugin</artifactId>
270-
<version>${maven.version}</version>
269+
<version>3.8.1</version>
271270
<configuration>
272271
<source>${java.version}</source>
273272
<target>${java.version}</target>

vrml-alert/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ An alert API that supports multiple methods for [vrml](https://github.com/kevint
1616
<dependency>
1717
<groupId>group.rxcloud</groupId>
1818
<artifactId>vrml-alert</artifactId>
19-
<version>1.0.7</version>
19+
<version>1.0.8</version>
2020
</dependency>
2121
```
2222

@@ -177,7 +177,7 @@ Developer repository can be found [here](https://github.com/kevinten10/vrml/tree
177177
<dependency>
178178
<groupId>group.rxcloud</groupId>
179179
<artifactId>vrml-alert</artifactId>
180-
<version>1.0.7</version>
180+
<version>1.0.8</version>
181181
</dependency>
182182
```
183183

vrml-alert/README_ZH.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Alert支持各种快捷灵活方式的告警API,避免过程式的调用告警
1616
<dependency>
1717
<groupId>group.rxcloud</groupId>
1818
<artifactId>vrml-alert</artifactId>
19-
<version>1.0.7</version>
19+
<version>1.0.8</version>
2020
</dependency>
2121
```
2222

@@ -177,7 +177,7 @@ Developer repository can be found [here](https://github.com/kevinten10/vrml/tree
177177
<dependency>
178178
<groupId>group.rxcloud</groupId>
179179
<artifactId>vrml-alert</artifactId>
180-
<version>1.0.7</version>
180+
<version>1.0.8</version>
181181
</dependency>
182182
```
183183

vrml-alert/WIKI.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,6 +164,6 @@ EmailAlertActor.onReceive(message);
164164
<dependency>
165165
<groupId>group.rxcloud</groupId>
166166
<artifactId>vrml-alert</artifactId>
167-
<version>1.0.7</version>
167+
<version>1.0.8</version>
168168
</dependency>
169169
```

vrml-alert/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>group.rxcloud</groupId>
99
<artifactId>vrml</artifactId>
10-
<version>1.0.7</version>
10+
<version>1.0.8</version>
1111
</parent>
1212

1313
<artifactId>vrml-alert</artifactId>

vrml-alert/src/main/java/group/rxcloud/vrml/alert/Alerts.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ public static void tell(final AlertMessage... messages) {
2121
try {
2222
AlertActorSystem.tell(message);
2323
} catch (Exception exception) {
24-
log.warn("[Alerts.tell] tell message[{}] failure!", Serialization.GSON.toJson(message), exception);
24+
log.warn("[Vrml][Alerts.tell] tell message[{}] failure!", Serialization.GSON.toJson(message), exception);
2525
}
2626
}
2727
}

vrml-alert/src/main/java/group/rxcloud/vrml/alert/actor/AlertActorSystem.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ private static <T extends AlertMessage> void send(final T message) {
7979
alertActor.receive(message);
8080
} else {
8181
// illegal situation
82-
log.warn("[Alerts.AlertActorSystem.send] alert actor not found by message type[{}]", message.getClass().getSimpleName());
82+
log.warn("[Vrml][Alerts.AlertActorSystem.send] alert actor not found by message type[{}]", message.getClass().getSimpleName());
8383
}
8484
}
8585

@@ -104,7 +104,7 @@ public static void tell(final AlertMessage message) {
104104
}
105105
} else {
106106
// illegal situation
107-
log.warn("[Alerts.AlertActorSystem.tell] alert configuration not found");
107+
log.warn("[Vrml][Alerts.AlertActorSystem.tell] alert configuration not found");
108108
}
109109
}
110110
}
@@ -192,7 +192,7 @@ private static void initSpringContextConfig() {
192192
.map(alertActor -> (AlertActor<? extends AlertMessage>) alertActor);
193193
ACTOR_CONTAINER = mapToAlertContainer(alertActorStream);
194194
} catch (Exception exception) {
195-
log.error("[Alerts.AlertActorSystem.initSpringContextConfig] alert actor system init spring context configuration failure.", exception);
195+
log.error("[Vrml][Alerts.AlertActorSystem.initSpringContextConfig] alert actor system init spring context configuration failure.", exception);
196196
}
197197
}
198198
}

vrml-alert/src/main/java/group/rxcloud/vrml/alert/actor/crash/DefaultCrashAlertActor.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ public DefaultCrashAlertMessage(AlertMessage message, Exception exception) {
3232
@Override
3333
protected void onReceive(DefaultCrashAlertMessage message) {
3434
String messageAlert = String.format(
35-
"[Alerts.DefaultCrashAlertActor.onReceive] crash happening, see message[%s] with exception[%s]",
35+
"[Vrml][Alerts.DefaultCrashAlertActor.onReceive] crash happening, see message[%s] with exception[%s]",
3636
message.getMessage(), message.getException());
3737
tell(new DefaultLogAlertActor.DefaultLogAlertMessage(messageAlert));
3838
}

vrml-alert/src/main/java/group/rxcloud/vrml/alert/actor/log/DefaultLogAlertActor.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ protected void log(String message) {
9797
},
9898
;
9999

100-
protected static final String ALERTS_PREFIX = "[Alerts] {}";
100+
protected static final String ALERTS_PREFIX = "[Vrml][Alerts] {}";
101101

102102
/**
103103
* Logging.

vrml-all/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>group.rxcloud</groupId>
99
<artifactId>vrml</artifactId>
10-
<version>1.0.7</version>
10+
<version>1.0.8</version>
1111
</parent>
1212

1313
<artifactId>vrml-all</artifactId>

vrml-api/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ A Aspect to log request process for [vrml](https://github.com/kevinten10/vrml) l
1212
<dependency>
1313
<groupId>group.rxcloud</groupId>
1414
<artifactId>vrml-api</artifactId>
15-
<version>1.0.7</version>
15+
<version>1.0.8</version>
1616
</dependency>
1717
```
1818

@@ -150,7 +150,7 @@ Developer repository can be found [here](https://github.com/kevinten10/vrml/tree
150150
<dependency>
151151
<groupId>group.rxcloud</groupId>
152152
<artifactId>vrml-api</artifactId>
153-
<version>1.0.7</version>
153+
<version>1.0.8</version>
154154
</dependency>
155155
```
156156

vrml-api/README_ZH.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Api模块提供一个可拓展的切面,使用LogsAPI记录网络请求的日
1616
<dependency>
1717
<groupId>group.rxcloud</groupId>
1818
<artifactId>vrml-api</artifactId>
19-
<version>1.0.7</version>
19+
<version>1.0.8</version>
2020
</dependency>
2121
```
2222

@@ -158,7 +158,7 @@ Developer repository can be found [here](https://github.com/kevinten10/vrml/tree
158158
<dependency>
159159
<groupId>group.rxcloud</groupId>
160160
<artifactId>vrml-api</artifactId>
161-
<version>1.0.7</version>
161+
<version>1.0.8</version>
162162
</dependency>
163163
```
164164

vrml-api/WIKI.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,6 +176,6 @@ public class ApiLogInterceptorAspectTest {
176176
<dependency>
177177
<groupId>group.rxcloud</groupId>
178178
<artifactId>vrml-api</artifactId>
179-
<version>1.0.7</version>
179+
<version>1.0.8</version>
180180
</dependency>
181181
```

vrml-api/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<artifactId>vrml</artifactId>
99
<groupId>group.rxcloud</groupId>
10-
<version>1.0.7</version>
10+
<version>1.0.8</version>
1111
</parent>
1212

1313
<artifactId>vrml-api</artifactId>

vrml-api/src/main/java/group/rxcloud/vrml/api/intercept/aspect/AbstractApiLogInterceptorAspect.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ public abstract class AbstractApiLogInterceptorAspect {
5555

5656
private static ApiLogConfiguration applyDefaultConfig(ApiLogConfiguration apiLogConfiguration) {
5757
if (apiLogConfiguration == null) {
58-
defaultLogs.error("[AbstractApiLogInterceptorAspect.static] ApiLogConfiguration is null! Please supply the configuration bean, otherwise will close all api log.");
58+
defaultLogs.error("[Vrml][AbstractApiLogInterceptorAspect.static] ApiLogConfiguration is null! Please supply the configuration bean, otherwise will close all api log.");
5959
apiLogConfiguration = new ApiLogConfiguration() {
6060

6161
/* default close all api log. */

vrml-compute/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<dependency>
1414
<groupId>group.rxcloud</groupId>
1515
<artifactId>vrml-compute</artifactId>
16-
<version>1.0.7</version>
16+
<version>1.0.8</version>
1717
</dependency>
1818
```
1919

@@ -62,7 +62,7 @@ Developer repository can be found [here](https://github.com/kevinten10/vrml/tree
6262
<dependency>
6363
<groupId>group.rxcloud</groupId>
6464
<artifactId>vrml-compute</artifactId>
65-
<version>1.0.7</version>
65+
<version>1.0.8</version>
6666
</dependency>
6767
```
6868

vrml-compute/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<artifactId>vrml</artifactId>
99
<groupId>group.rxcloud</groupId>
10-
<version>1.0.7</version>
10+
<version>1.0.8</version>
1111
</parent>
1212

1313
<artifactId>vrml-compute</artifactId>

vrml-compute/src/main/java/group/rxcloud/vrml/compute/Computes.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ private void initSpringContextConfig() {
3737
.getActualTypeArguments()[0]);
3838
configuration = (T) SpringContextConfigurator.getBean(actualTypeArgument);
3939
} catch (Exception e) {
40-
log.error("Computes init spring context configuration failure.", e);
40+
log.error("[Vrml]Computes init spring context configuration failure.", e);
4141
}
4242
}
4343
}

vrml-core/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ The core API for all vrml lib for [vrml](https://github.com/kevinten10/vrml) lib
1212
<dependency>
1313
<groupId>group.rxcloud</groupId>
1414
<artifactId>vrml-core</artifactId>
15-
<version>1.0.7</version>
15+
<version>1.0.8</version>
1616
</dependency>
1717
```
1818

@@ -150,7 +150,7 @@ Developer repository can be found [here](https://github.com/kevinten10/vrml/tree
150150
<dependency>
151151
<groupId>group.rxcloud</groupId>
152152
<artifactId>vrml-core</artifactId>
153-
<version>1.0.7</version>
153+
<version>1.0.8</version>
154154
</dependency>
155155
```
156156

vrml-core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>group.rxcloud</groupId>
99
<artifactId>vrml</artifactId>
10-
<version>1.0.7</version>
10+
<version>1.0.8</version>
1111
</parent>
1212

1313
<artifactId>vrml-core</artifactId>

vrml-core/src/main/java/group/rxcloud/vrml/core/beans/SpringContextConfigurator.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ static void clear() {
159159

160160
private static void checkApplicationContext() {
161161
if (ctx == null) {
162-
throw new IllegalStateException("[vrml.SpringContextConfigurator.AppContext] applicationContext not injected.");
162+
throw new IllegalStateException("[Vrml][SpringContextConfigurator.AppContext] applicationContext not injected.");
163163
}
164164
}
165165
}

vrml-data/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ A common data structure extension API for [vrml](https://github.com/kevinten10/v
1212
<dependency>
1313
<groupId>group.rxcloud</groupId>
1414
<artifactId>vrml-data</artifactId>
15-
<version>1.0.7</version>
15+
<version>1.0.8</version>
1616
</dependency>
1717
```
1818

@@ -101,7 +101,7 @@ Developer repository can be found [here](https://github.com/kevinten10/vrml/tree
101101
<dependency>
102102
<groupId>group.rxcloud</groupId>
103103
<artifactId>vrml-data</artifactId>
104-
<version>1.0.7</version>
104+
<version>1.0.8</version>
105105
</dependency>
106106
```
107107

vrml-data/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>group.rxcloud</groupId>
99
<artifactId>vrml</artifactId>
10-
<version>1.0.7</version>
10+
<version>1.0.8</version>
1111
</parent>
1212

1313
<artifactId>vrml-data</artifactId>

vrml-error/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ A set of error code definition specifications for [vrml](https://github.com/kevi
1212
<dependency>
1313
<groupId>group.rxcloud</groupId>
1414
<artifactId>vrml-error</artifactId>
15-
<version>1.0.7</version>
15+
<version>1.0.8</version>
1616
</dependency>
1717
```
1818

@@ -136,7 +136,7 @@ Developer repository can be found [here](https://github.com/kevinten10/vrml/tree
136136
<dependency>
137137
<groupId>group.rxcloud</groupId>
138138
<artifactId>vrml-error</artifactId>
139-
<version>1.0.7</version>
139+
<version>1.0.8</version>
140140
</dependency>
141141
```
142142

vrml-error/README_ZH.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<dependency>
1313
<groupId>group.rxcloud</groupId>
1414
<artifactId>vrml-error</artifactId>
15-
<version>1.0.7</version>
15+
<version>1.0.8</version>
1616
</dependency>
1717
```
1818

@@ -137,7 +137,7 @@ Developer repository can be found [here](https://github.com/kevinten10/vrml/tree
137137
<dependency>
138138
<groupId>group.rxcloud</groupId>
139139
<artifactId>vrml-error</artifactId>
140-
<version>1.0.7</version>
140+
<version>1.0.8</version>
141141
</dependency>
142142
```
143143

vrml-error/WIKI.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,6 +121,6 @@ public enum ErrorCodes implements ErrorCodeContext {
121121
<dependency>
122122
<groupId>group.rxcloud</groupId>
123123
<artifactId>vrml-error</artifactId>
124-
<version>1.0.7</version>
124+
<version>1.0.8</version>
125125
</dependency>
126126
```

0 commit comments

Comments
 (0)