Skip to content

Commit

Permalink
1.8.3
Browse files Browse the repository at this point in the history
  • Loading branch information
noear committed Jun 16, 2022
1 parent 4cc6ab6 commit 4d8dc2a
Show file tree
Hide file tree
Showing 4 changed files with 85 additions and 1 deletion.
2 changes: 1 addition & 1 deletion _solon_extend/solon.boot.vertx/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<dependency>
<groupId>io.vertx</groupId>
<artifactId>vertx-core</artifactId>
<version>3.4.1</version>
<version>3.5.4</version>
</dependency>
</dependencies>

Expand Down
40 changes: 40 additions & 0 deletions _solon_shortcut/solon-cloud-alibaba/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>org.noear</groupId>
<artifactId>solon-parent</artifactId>
<version>1.8.3</version>
<relativePath>../../solon-parent/pom.xml</relativePath>
</parent>

<artifactId>solon-cloud-alibaba</artifactId>
<packaging>jar</packaging>

<dependencies>
<dependency>
<groupId>org.noear</groupId>
<artifactId>solon-rpc</artifactId>
</dependency>

<!-- 注册与发现组件 -->
<dependency>
<groupId>org.noear</groupId>
<artifactId>nacos-solon-plugin</artifactId>
</dependency>

<dependency>
<groupId>org.noear</groupId>
<artifactId>rocketmq-solon-plugin</artifactId>
</dependency>

<dependency>
<groupId>org.noear</groupId>
<artifactId>sentinel-solon-plugin</artifactId>
</dependency>
</dependencies>

</project>
30 changes: 30 additions & 0 deletions _solon_shortcut/solon-cloud-water/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>org.noear</groupId>
<artifactId>solon-parent</artifactId>
<version>1.8.3</version>
<relativePath>../../solon-parent/pom.xml</relativePath>
</parent>

<artifactId>solon-cloud-water</artifactId>
<packaging>jar</packaging>

<dependencies>
<dependency>
<groupId>org.noear</groupId>
<artifactId>solon-rpc</artifactId>
</dependency>

<!-- 注册与发现组件 -->
<dependency>
<groupId>org.noear</groupId>
<artifactId>water-solon-plugin</artifactId>
</dependency>
</dependencies>

</project>
14 changes: 14 additions & 0 deletions solon-parent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -627,6 +627,18 @@
<version>${solon.ver}</version>
</dependency>

<dependency>
<groupId>org.noear</groupId>
<artifactId>solon-cloud-alibaba</artifactId>
<version>${solon.ver}</version>
</dependency>

<dependency>
<groupId>org.noear</groupId>
<artifactId>solon-cloud-water</artifactId>
<version>${solon.ver}</version>
</dependency>


<dependency>
<groupId>org.noear</groupId>
Expand Down Expand Up @@ -1289,6 +1301,8 @@
<module>../_solon_shortcut/solon-web</module>
<module>../_solon_shortcut/solon-rpc</module>
<module>../_solon_shortcut/solon-cloud</module>
<module>../_solon_shortcut/solon-cloud-alibaba</module>
<module>../_solon_shortcut/solon-cloud-water</module>

<module>../_solon_shortcut/solon-test</module>

Expand Down

0 comments on commit 4d8dc2a

Please sign in to comment.