Skip to content

Commit

Permalink
Merge pull request apache#1389, refactor dubbo deployment process
Browse files Browse the repository at this point in the history
  • Loading branch information
chickenlj authored Mar 6, 2018
1 parent b626432 commit 4a5c5e2
Show file tree
Hide file tree
Showing 294 changed files with 16,319 additions and 7,766 deletions.
54 changes: 51 additions & 3 deletions all/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ limitations under the License.
</dependency>
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>dubbo-rpc-default</artifactId>
<artifactId>dubbo-rpc-dubbo</artifactId>
<version>${project.version}</version>
<scope>compile</scope>
<optional>true</optional>
Expand Down Expand Up @@ -277,10 +277,52 @@ limitations under the License.
<scope>compile</scope>
<optional>true</optional>
</dependency>
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>dubbo-serialization-api</artifactId>
<version>${project.version}</version>
<scope>compile</scope>
<optional>true</optional>
</dependency>
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>dubbo-serialization-fastjson</artifactId>
<version>${project.version}</version>
<scope>compile</scope>
<optional>true</optional>
</dependency>
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>dubbo-serialization-fst</artifactId>
<version>${project.version}</version>
<scope>compile</scope>
<optional>true</optional>
</dependency>
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>dubbo-serialization-hessian2</artifactId>
<version>${project.version}</version>
<scope>compile</scope>
<optional>true</optional>
</dependency>
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>dubbo-serialization-jdk</artifactId>
<version>${project.version}</version>
<scope>compile</scope>
<optional>true</optional>
</dependency>
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>dubbo-serialization-kryo</artifactId>
<version>${project.version}</version>
<scope>compile</scope>
<optional>true</optional>
</dependency>
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>hessian-lite</artifactId>
<version>3.2.1-fixed-2</version>
<version>3.2.2</version>
<scope>compile</scope>
<optional>true</optional>
</dependency>
Expand Down Expand Up @@ -361,7 +403,7 @@ limitations under the License.
<include>com.alibaba:dubbo-remoting-http</include>
<include>com.alibaba:dubbo-remoting-zookeeper</include>
<include>com.alibaba:dubbo-rpc-api</include>
<include>com.alibaba:dubbo-rpc-default</include>
<include>com.alibaba:dubbo-rpc-dubbo</include>
<include>com.alibaba:dubbo-rpc-injvm</include>
<include>com.alibaba:dubbo-rpc-rmi</include>
<include>com.alibaba:dubbo-rpc-hessian</include>
Expand All @@ -388,6 +430,12 @@ limitations under the License.
<include>com.alibaba:dubbo-container-log4j</include>
<include>com.alibaba:dubbo-container-logback</include>
<include>com.alibaba:dubbo-qos</include>
<include>com.alibaba:dubbo-serialization-api</include>
<include>com.alibaba:dubbo-serialization-fastjson</include>
<include>com.alibaba:dubbo-serialization-hessian2</include>
<include>com.alibaba:dubbo-serialization-fst</include>
<include>com.alibaba:dubbo-serialization-kryo</include>
<include>com.alibaba:dubbo-serialization-jdk</include>
</includes>
</artifactSet>
<transformers>
Expand Down
34 changes: 32 additions & 2 deletions bom/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@
</dependency>
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>dubbo-rpc-default</artifactId>
<artifactId>dubbo-rpc-dubbo</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
Expand Down Expand Up @@ -253,10 +253,40 @@
<artifactId>dubbo-qos</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>dubbo-serialization-api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>dubbo-serialization-fastjson</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>dubbo-serialization-fst</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>dubbo-serialization-hessian2</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>dubbo-serialization-jdk</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>dubbo-serialization-kryo</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>hessian-lite</artifactId>
<version>3.2.1-fixed-2</version>
<version>3.2.2</version>
</dependency>
</dependencies>
</dependencyManagement>
Expand Down
2 changes: 1 addition & 1 deletion dubbo-cluster/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
<name>${project.artifactId}</name>
<description>The cluster module of dubbo project</description>
<properties>
<skip_maven_deploy>true</skip_maven_deploy>
<skip_maven_deploy>false</skip_maven_deploy>
</properties>
<dependencies>
<dependency>
Expand Down

This file was deleted.

This file was deleted.

This file was deleted.

4 changes: 2 additions & 2 deletions dubbo-common/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ limitations under the License.
<name>${project.artifactId}</name>
<description>The common module of dubbo project</description>
<properties>
<skip_maven_deploy>true</skip_maven_deploy>
<skip_maven_deploy>false</skip_maven_deploy>
</properties>
<dependencies>
<dependency>
Expand All @@ -51,7 +51,7 @@ limitations under the License.
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>hessian-lite</artifactId>
<version>3.2.1-fixed-2</version>
<version>3.2.2</version>
</dependency>
<dependency>
<groupId>com.alibaba</groupId>
Expand Down
Loading

0 comments on commit 4a5c5e2

Please sign in to comment.