Skip to content

Commit

Permalink
release: release 1.0.7 version
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinten10 committed Apr 15, 2022
1 parent 7e9a9e5 commit 10dbc18
Show file tree
Hide file tree
Showing 54 changed files with 148 additions and 112 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ You can import all vrml modules:
<dependency>
<groupId>group.rxcloud</groupId>
<artifactId>vrml</artifactId>
<version>1.0.5</version>
<version>1.0.7</version>
<type>pom</type>
<scope>import</scope>
</dependency>
Expand All @@ -219,7 +219,7 @@ Latest feature branch:
<dependency>
<groupId>group.rxcloud</groupId>
<artifactId>vrml</artifactId>
<version>1.0.5</version>
<version>1.0.7</version>
<type>pom</type>
<scope>import</scope>
</dependency>
Expand Down
4 changes: 2 additions & 2 deletions README_CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ You can import all vrml modules:
<dependency>
<groupId>group.rxcloud</groupId>
<artifactId>vrml</artifactId>
<version>1.0.5</version>
<version>1.0.7</version>
<type>pom</type>
<scope>import</scope>
</dependency>
Expand All @@ -219,7 +219,7 @@ Latest feature branch:
<dependency>
<groupId>group.rxcloud</groupId>
<artifactId>vrml</artifactId>
<version>1.0.5</version>
<version>1.0.7</version>
<type>pom</type>
<scope>import</scope>
</dependency>
Expand Down
69 changes: 54 additions & 15 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<groupId>group.rxcloud</groupId>
<artifactId>vrml</artifactId>
<packaging>pom</packaging>
<version>1.0.5</version>
<version>1.0.7</version>

<name>vrml</name>
<description>Vrml is a useful api library for java work.</description>
Expand Down Expand Up @@ -71,11 +71,16 @@
<maven.version>3.8.1</maven.version>

<!-- 2022.4.2 lasted version -->
<vavr.version>0.10.4</vavr.version>
<commons-lang3.version>3.12.0</commons-lang3.version>
<gson.version>2.9.0</gson.version>
<guava.version>31.1-jre</guava.version>
<spring.version>5.3.18</spring.version>
<jackson-databind.version>2.13.2.2</jackson-databind.version>
<lombok.version>1.18.22</lombok.version>
<slf4j-api.version>1.7.36</slf4j-api.version>
<springboot.version>2.6.6</springboot.version>
<vavr.version>0.10.4</vavr.version>

<junit.version>4.13.2</junit.version>
<jmockito.version>1.49</jmockito.version>
</properties>

Expand Down Expand Up @@ -176,24 +181,41 @@
<!-- spring -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-dependencies</artifactId>
<artifactId>spring-boot-starter</artifactId>
<version>${springboot.version}</version>
<type>pom</type>
<scope>import</scope>
<optional>true</optional>
</dependency>

<!--slf4j-api -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>${slf4j-api.version}</version>
<optional>true</optional>
</dependency>

<!-- commons-lang3 -->
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>${commons-lang3.version}</version>
<optional>true</optional>
</dependency>

<!-- jackson-databind -->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-framework-bom</artifactId>
<version>${spring.version}</version>
<type>pom</type>
<scope>import</scope>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>${jackson-databind.version}</version>
<optional>true</optional>
</dependency>

<!-- vavr -->
<!-- gson -->
<dependency>
<groupId>io.vavr</groupId>
<artifactId>vavr</artifactId>
<version>${vavr.version}</version>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>${gson.version}</version>
<optional>true</optional>
</dependency>

<!-- guava -->
Expand All @@ -210,15 +232,32 @@
<artifactId>jmockit</artifactId>
<version>${jmockito.version}</version>
<scope>test</scope>
<optional>true</optional>
</dependency><!-- https://mvnrepository.com/artifact/junit/junit -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
<optional>true</optional>
</dependency>
</dependencies>
</dependencyManagement>

<dependencies>
<!-- vavr -->
<dependency>
<groupId>io.vavr</groupId>
<artifactId>vavr</artifactId>
<version>${vavr.version}</version>
<optional>true</optional>
</dependency>

<!-- tool -->
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>${lombok.version}</version>
<optional>true</optional>
</dependency>
</dependencies>
Expand Down
4 changes: 2 additions & 2 deletions vrml-alert/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ An alert API that supports multiple methods for [vrml](https://github.com/kevint
<dependency>
<groupId>group.rxcloud</groupId>
<artifactId>vrml-alert</artifactId>
<version>1.0.5</version>
<version>1.0.7</version>
</dependency>
```

Expand Down Expand Up @@ -177,7 +177,7 @@ Developer repository can be found [here](https://github.com/kevinten10/vrml/tree
<dependency>
<groupId>group.rxcloud</groupId>
<artifactId>vrml-alert</artifactId>
<version>1.0.5</version>
<version>1.0.7</version>
</dependency>
```

Expand Down
4 changes: 2 additions & 2 deletions vrml-alert/README_ZH.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Alert支持各种快捷灵活方式的告警API,避免过程式的调用告警
<dependency>
<groupId>group.rxcloud</groupId>
<artifactId>vrml-alert</artifactId>
<version>1.0.5</version>
<version>1.0.7</version>
</dependency>
```

Expand Down Expand Up @@ -177,7 +177,7 @@ Developer repository can be found [here](https://github.com/kevinten10/vrml/tree
<dependency>
<groupId>group.rxcloud</groupId>
<artifactId>vrml-alert</artifactId>
<version>1.0.5</version>
<version>1.0.7</version>
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion vrml-alert/WIKI.md
Original file line number Diff line number Diff line change
Expand Up @@ -164,6 +164,6 @@ EmailAlertActor.onReceive(message);
<dependency>
<groupId>group.rxcloud</groupId>
<artifactId>vrml-alert</artifactId>
<version>1.0.5</version>
<version>1.0.7</version>
</dependency>
```
2 changes: 1 addition & 1 deletion vrml-alert/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>group.rxcloud</groupId>
<artifactId>vrml</artifactId>
<version>1.0.5</version>
<version>1.0.7</version>
</parent>

<artifactId>vrml-alert</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion vrml-all/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>group.rxcloud</groupId>
<artifactId>vrml</artifactId>
<version>1.0.5</version>
<version>1.0.7</version>
</parent>

<artifactId>vrml-all</artifactId>
Expand Down
4 changes: 2 additions & 2 deletions vrml-api/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ A Aspect to log request process for [vrml](https://github.com/kevinten10/vrml) l
<dependency>
<groupId>group.rxcloud</groupId>
<artifactId>vrml-api</artifactId>
<version>1.0.5</version>
<version>1.0.7</version>
</dependency>
```

Expand Down Expand Up @@ -150,7 +150,7 @@ Developer repository can be found [here](https://github.com/kevinten10/vrml/tree
<dependency>
<groupId>group.rxcloud</groupId>
<artifactId>vrml-api</artifactId>
<version>1.0.5</version>
<version>1.0.7</version>
</dependency>
```

Expand Down
4 changes: 2 additions & 2 deletions vrml-api/README_ZH.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Api模块提供一个可拓展的切面,使用LogsAPI记录网络请求的日
<dependency>
<groupId>group.rxcloud</groupId>
<artifactId>vrml-api</artifactId>
<version>1.0.5</version>
<version>1.0.7</version>
</dependency>
```

Expand Down Expand Up @@ -158,7 +158,7 @@ Developer repository can be found [here](https://github.com/kevinten10/vrml/tree
<dependency>
<groupId>group.rxcloud</groupId>
<artifactId>vrml-api</artifactId>
<version>1.0.5</version>
<version>1.0.7</version>
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion vrml-api/WIKI.md
Original file line number Diff line number Diff line change
Expand Up @@ -176,6 +176,6 @@ public class ApiLogInterceptorAspectTest {
<dependency>
<groupId>group.rxcloud</groupId>
<artifactId>vrml-api</artifactId>
<version>1.0.5</version>
<version>1.0.7</version>
</dependency>
```
4 changes: 3 additions & 1 deletion vrml-api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,14 @@
<parent>
<artifactId>vrml</artifactId>
<groupId>group.rxcloud</groupId>
<version>1.0.5</version>
<version>1.0.7</version>
</parent>

<artifactId>vrml-api</artifactId>
<packaging>jar</packaging>

<properties>
<aspectjweaver.version>1.9.9.1</aspectjweaver.version>
</properties>

<dependencies>
Expand Down Expand Up @@ -52,6 +53,7 @@
<dependency>
<groupId>org.aspectj</groupId>
<artifactId>aspectjweaver</artifactId>
<version>${aspectjweaver.version}</version>
<optional>true</optional>
</dependency>
</dependencies>
Expand Down
4 changes: 2 additions & 2 deletions vrml-compute/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<dependency>
<groupId>group.rxcloud</groupId>
<artifactId>vrml-compute</artifactId>
<version>1.0.5</version>
<version>1.0.7</version>
</dependency>
```

Expand Down Expand Up @@ -62,7 +62,7 @@ Developer repository can be found [here](https://github.com/kevinten10/vrml/tree
<dependency>
<groupId>group.rxcloud</groupId>
<artifactId>vrml-compute</artifactId>
<version>1.0.5</version>
<version>1.0.7</version>
</dependency>
```

Expand Down
3 changes: 2 additions & 1 deletion vrml-compute/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<artifactId>vrml</artifactId>
<groupId>group.rxcloud</groupId>
<version>1.0.5</version>
<version>1.0.7</version>
</parent>

<artifactId>vrml-compute</artifactId>
Expand Down Expand Up @@ -50,6 +50,7 @@
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
<optional>true</optional>
</dependency>
</dependencies>

Expand Down
4 changes: 2 additions & 2 deletions vrml-core/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ The core API for all vrml lib for [vrml](https://github.com/kevinten10/vrml) lib
<dependency>
<groupId>group.rxcloud</groupId>
<artifactId>vrml-core</artifactId>
<version>1.0.5</version>
<version>1.0.7</version>
</dependency>
```

Expand Down Expand Up @@ -150,7 +150,7 @@ Developer repository can be found [here](https://github.com/kevinten10/vrml/tree
<dependency>
<groupId>group.rxcloud</groupId>
<artifactId>vrml-core</artifactId>
<version>1.0.5</version>
<version>1.0.7</version>
</dependency>
```

Expand Down
9 changes: 2 additions & 7 deletions vrml-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>group.rxcloud</groupId>
<artifactId>vrml</artifactId>
<version>1.0.5</version>
<version>1.0.7</version>
</parent>

<artifactId>vrml-core</artifactId>
Expand All @@ -17,12 +17,6 @@
</properties>

<dependencies>
<!-- vavr -->
<dependency>
<groupId>io.vavr</groupId>
<artifactId>vavr</artifactId>
</dependency>

<!-- log -->
<dependency>
<groupId>org.slf4j</groupId>
Expand All @@ -49,6 +43,7 @@
<groupId>org.jmockit</groupId>
<artifactId>jmockit</artifactId>
<scope>test</scope>
<optional>true</optional>
</dependency>
</dependencies>

Expand Down
4 changes: 2 additions & 2 deletions vrml-data/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ A common data structure extension API for [vrml](https://github.com/kevinten10/v
<dependency>
<groupId>group.rxcloud</groupId>
<artifactId>vrml-data</artifactId>
<version>1.0.5</version>
<version>1.0.7</version>
</dependency>
```

Expand Down Expand Up @@ -101,7 +101,7 @@ Developer repository can be found [here](https://github.com/kevinten10/vrml/tree
<dependency>
<groupId>group.rxcloud</groupId>
<artifactId>vrml-data</artifactId>
<version>1.0.5</version>
<version>1.0.7</version>
</dependency>
```

Expand Down
Loading

0 comments on commit 10dbc18

Please sign in to comment.